.grid-block .grid-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,.07);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}
.grid-block .grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.bg-dark-section .grid-block .grid-card {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.08);
}
.grid-block .grid-card-icon {
    width: 64px; height: 64px;
    background: rgba(20,184,166,.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.grid-block .grid-card-icon i { font-size: 26px; color: #14b8a6; }
.grid-block .grid-card-number {
    font-size: 48px; font-weight: 900;
    color: rgba(20,184,166,.2); line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}
.grid-block .grid-card-img {
    border-radius: 12px; overflow: hidden;
    margin-bottom: 20px; height: 180px;
}
.grid-block .grid-card-img img { width: 100%; height: 100%; object-fit: cover; }
.grid-block .grid-card-title {
    font-size: 18px; font-weight: 700;
    color: #1a1f36; margin-bottom: 10px;
}
.bg-dark-section .grid-block .grid-card-title { color: #fff; }
.grid-block .grid-card-desc { color: #6c757d; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.bg-dark-section .grid-block .grid-card-desc { color: rgba(255,255,255,.6); }
.grid-block .grid-card-link { color: #14b8a6; font-size: 14px; font-weight: 600; text-decoration: none; }
.grid-block .grid-card-link:hover { color: #0f766e; text-decoration: underline; }
