/**
 * GHVM Teaching Staff — elevated directory UX
 */
.ghvm-teachers {
    --ghvm-t-teal: var(--color-primary, #1ab69d);
    --ghvm-t-teal-deep: #0f8f7a;
    --ghvm-t-coral: var(--color-secondary, #ee4a62);
    --ghvm-t-ink: var(--color-heading, #181818);
    --ghvm-t-muted: #6b7385;
    --ghvm-t-stage: #eef7f5;
    --ghvm-t-ease: cubic-bezier(0.22, 1, 0.36, 1);
    background:
        radial-gradient(ellipse 70% 42% at 0% 0%, rgba(26, 182, 157, 0.11), transparent 55%),
        radial-gradient(ellipse 48% 36% at 100% 6%, rgba(238, 74, 98, 0.05), transparent 50%),
        #fafcfb;
    padding: 40px 0 88px !important;
    font-family: var(--font-primary);
}

.ghvm-teachers .container {
    max-width: 1200px;
}

.ghvm-teachers-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .ghvm-teachers-intro {
        grid-template-columns: 1fr;
    }
}

.ghvm-teachers-head {
    text-align: left;
    margin-bottom: 0;
}

.ghvm-teachers-head .title {
    margin: 0 0 8px;
    font-family: var(--font-secondary);
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 800;
    color: var(--ghvm-t-ink);
    line-height: 1.12;
}

.ghvm-teachers-head .lead {
    margin: 0;
    max-width: 520px;
    color: var(--ghvm-t-muted);
    font-size: 15.5px;
    line-height: 1.55;
}

.ghvm-teachers-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ghvm-teachers-stat {
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.07);
    border-radius: 16px;
    padding: 14px 14px 12px;
    box-shadow: 0 8px 22px rgba(20, 32, 43, 0.04);
}

.ghvm-teachers-stat .num {
    display: block;
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 800;
    color: var(--ghvm-t-ink);
    line-height: 1;
}

.ghvm-teachers-stat .lbl {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 650;
    color: var(--ghvm-t-muted);
}

/* Sticky control deck */
.ghvm-teachers-deck {
    position: sticky;
    top: 84px;
    z-index: 30;
    margin-bottom: 20px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 32, 43, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(20, 32, 43, 0.07);
}

.ghvm-teachers-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(20, 32, 43, 0.06);
}

.ghvm-teachers-filters a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(20, 32, 43, 0.1);
    background: #fff;
    color: var(--ghvm-t-ink);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.ghvm-teachers-filters a .chip-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ghvm-t-stage);
    color: var(--ghvm-t-teal-deep);
    font-size: 11px;
    font-weight: 800;
}

.ghvm-teachers-filters a:hover {
    border-color: rgba(26, 182, 157, 0.4);
    color: var(--ghvm-t-teal-deep);
}

.ghvm-teachers-filters a.is-active {
    background: linear-gradient(135deg, var(--ghvm-t-teal), var(--ghvm-t-teal-deep));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 143, 122, 0.25);
}

.ghvm-teachers-filters a.is-active .chip-count {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.ghvm-teachers-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
}

@media (max-width: 767px) {
    .ghvm-teachers-controls {
        grid-template-columns: 1fr;
    }

    .ghvm-teachers-deck {
        top: 72px;
        padding: 12px;
        border-radius: 16px;
    }
}

.ghvm-teachers-search {
    position: relative;
}

.ghvm-teachers-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ghvm-t-muted);
    font-size: 16px;
    pointer-events: none;
}

.ghvm-teachers-search input {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(20, 32, 43, 0.12);
    border-radius: 12px;
    background: #f8fbfa;
    padding: 0 40px 0 36px;
    font-size: 14px;
    color: var(--ghvm-t-ink);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ghvm-teachers-search input:focus {
    background: #fff;
    border-color: rgba(26, 182, 157, 0.5);
    box-shadow: 0 0 0 4px rgba(26, 182, 157, 0.12);
}

.ghvm-teachers-search .clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--ghvm-t-muted);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ghvm-teachers-search.has-value .clear {
    display: inline-flex;
}

.ghvm-teachers-sort,
.ghvm-teachers-views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 44px;
    padding: 4px;
    border-radius: 12px;
    background: #f4f7f6;
    border: 1px solid rgba(20, 32, 43, 0.07);
}

.ghvm-teachers-sort select {
    height: 36px;
    border: none;
    background: transparent;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 650;
    color: var(--ghvm-t-ink);
    outline: none;
    cursor: pointer;
}

.ghvm-teachers-views button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--ghvm-t-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.ghvm-teachers-views button.is-active {
    background: #fff;
    color: var(--ghvm-t-teal-deep);
    box-shadow: 0 2px 8px rgba(20, 32, 43, 0.08);
}

.ghvm-teachers-alpha {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 16px;
}

.ghvm-teachers-alpha button {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ghvm-t-muted);
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.ghvm-teachers-alpha button:hover,
.ghvm-teachers-alpha button.is-active {
    background: var(--ghvm-t-stage);
    color: var(--ghvm-t-teal-deep);
    border-color: rgba(26, 182, 157, 0.2);
}

.ghvm-teachers-alpha button:disabled {
    opacity: 0.28;
    cursor: default;
}

.ghvm-teachers-resultbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: var(--ghvm-t-muted);
    font-weight: 600;
}

.ghvm-teachers-resultbar strong {
    color: var(--ghvm-t-ink);
}

/* Grid cards */
.ghvm-teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.ghvm-teachers-grid.is-list {
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (max-width: 991px) {
    .ghvm-teachers-grid:not(.is-list) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .ghvm-teachers-grid:not(.is-list) {
        grid-template-columns: 1fr;
    }

    .ghvm-teachers-stats {
        grid-template-columns: 1fr;
    }
}

.ghvm-teacher-card {
    display: flex;
    flex-direction: column;
    height: auto;
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.07);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(20, 32, 43, 0.05);
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s var(--ghvm-t-ease);
    animation: ghvm-teacher-in 0.45s var(--ghvm-t-ease) both;
}

.ghvm-teacher-card:nth-child(2) { animation-delay: 0.04s; }
.ghvm-teacher-card:nth-child(3) { animation-delay: 0.08s; }
.ghvm-teacher-card:nth-child(4) { animation-delay: 0.12s; }
.ghvm-teacher-card:nth-child(5) { animation-delay: 0.16s; }
.ghvm-teacher-card:nth-child(6) { animation-delay: 0.2s; }

@keyframes ghvm-teacher-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ghvm-teacher-card:hover {
    border-color: rgba(26, 182, 157, 0.35);
    box-shadow: 0 18px 42px rgba(20, 32, 43, 0.1);
}

.ghvm-teacher-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    background: linear-gradient(160deg, #e8f5f2, #f7faf9);
    overflow: hidden;
    display: block;
    text-decoration: none !important;
}

.ghvm-teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s var(--ghvm-t-ease);
}

.ghvm-teacher-card:hover .ghvm-teacher-photo img {
    transform: scale(1.05);
}

/* Compact identity block — reserved heights so missing fields don't shrink the card */
.ghvm-teacher-body {
    padding: 14px 16px 8px;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.ghvm-teacher-cat-slot {
    min-height: 24px;
    margin-bottom: 6px;
}

.ghvm-teacher-cat {
    display: inline-flex;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--ghvm-t-stage);
    color: var(--ghvm-t-teal-deep);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ghvm-teacher-body h3 {
    margin: 0 0 4px;
    min-height: 2.6em;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 750;
    color: var(--ghvm-t-ink);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ghvm-teacher-body h3 a {
    color: inherit;
    text-decoration: none !important;
}

.ghvm-teacher-card:hover .ghvm-teacher-body h3 {
    color: var(--ghvm-t-teal-deep);
}

.ghvm-teacher-body .role {
    margin: 0;
    min-height: 2.7em;
    color: var(--ghvm-t-muted);
    font-size: 13.5px;
    font-weight: 550;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fixed footer: same height every card; optional icons never add vertical space */
.ghvm-teacher-foot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 10px 14px 14px;
    border-top: 1px solid rgba(20, 32, 43, 0.07);
    background: linear-gradient(180deg, #fbfcfc 0%, #f6f9f8 100%);
}

.ghvm-teacher-foot-cta {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ghvm-t-teal), var(--ghvm-t-teal-deep));
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(15, 143, 122, 0.22);
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.ghvm-teacher-foot-cta:hover {
    filter: brightness(1.05);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(15, 143, 122, 0.3);
}

.ghvm-teacher-foot-cta i {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.ghvm-teacher-card:hover .ghvm-teacher-foot-cta i {
    transform: translateX(2px);
}

.ghvm-teacher-foot-icons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    max-width: 48%;
    overflow: hidden;
}

.ghvm-teacher-foot-icons:empty {
    display: none;
}

.ghvm-teacher-foot-icons a {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.08);
    color: var(--ghvm-t-ink);
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ghvm-teacher-foot-icons a:hover {
    background: var(--ghvm-t-stage);
    border-color: rgba(26, 182, 157, 0.35);
    color: var(--ghvm-t-teal-deep);
}

/* List mode */
.ghvm-teachers-grid.is-list .ghvm-teacher-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    border-radius: 18px;
    min-height: 0;
}

.ghvm-teachers-grid.is-list .ghvm-teacher-photo {
    width: 118px;
    flex: 0 0 118px;
    aspect-ratio: auto;
    align-self: stretch;
    min-height: 118px;
}

.ghvm-teachers-grid.is-list .ghvm-teacher-body {
    flex: 1 1 auto;
    padding: 14px 16px 8px;
    justify-content: center;
    min-width: 0;
}

.ghvm-teachers-grid.is-list .ghvm-teacher-body h3,
.ghvm-teachers-grid.is-list .ghvm-teacher-body .role {
    min-height: 0;
}

.ghvm-teachers-grid.is-list .ghvm-teacher-body .role {
    -webkit-line-clamp: 1;
}

.ghvm-teachers-grid.is-list .ghvm-teacher-foot {
    flex: 1 1 100%;
    border-top: 1px solid rgba(20, 32, 43, 0.07);
    margin: 0;
}

.ghvm-teachers-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 56px 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px dashed rgba(26, 182, 157, 0.3);
}

.ghvm-teachers-empty i {
    font-size: 36px;
    color: var(--ghvm-t-teal);
    display: block;
    margin-bottom: 10px;
}

.ghvm-teachers-empty h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 750;
    color: var(--ghvm-t-ink);
}

.ghvm-teachers-empty p {
    margin: 0 0 16px;
    color: var(--ghvm-t-muted);
}

.ghvm-teacher-card.is-hidden {
    display: none !important;
}

@media (max-width: 575px) {
    .ghvm-teachers-grid.is-list .ghvm-teacher-card {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .ghvm-teachers-grid.is-list .ghvm-teacher-photo {
        width: 100%;
        flex-basis: auto;
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .ghvm-teachers-grid.is-list .ghvm-teacher-foot {
        flex-basis: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ghvm-teacher-card,
    .ghvm-teacher-photo img,
    .ghvm-teacher-foot-cta i {
        animation: none !important;
        transition: none !important;
    }
}

/* —— Teacher profile detail —— */
.ghvm-tp {
    background:
        radial-gradient(ellipse 70% 42% at 0% 0%, rgba(26, 182, 157, 0.11), transparent 55%),
        radial-gradient(ellipse 48% 36% at 100% 6%, rgba(238, 74, 98, 0.05), transparent 50%),
        #fafcfb;
    padding: 40px 0 72px !important;
    font-family: var(--font-primary);
}

.ghvm-tp .container {
    max-width: 1120px;
}

.ghvm-tp-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    color: var(--ghvm-t-teal-deep);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

.ghvm-tp-back:hover {
    color: var(--ghvm-t-ink);
}

.ghvm-tp-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

@media (max-width: 991px) {
    .ghvm-tp-layout {
        grid-template-columns: 1fr;
    }
}

.ghvm-tp-aside {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 14px;
}

@media (max-width: 991px) {
    .ghvm-tp-aside {
        position: relative;
        top: 0;
    }
}

.ghvm-tp-card {
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.07);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(20, 32, 43, 0.06);
}

.ghvm-tp-photo {
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, #e8f5f2, #f7faf9);
    overflow: hidden;
}

.ghvm-tp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ghvm-tp-identity {
    padding: 18px 18px 20px;
    text-align: center;
}

.ghvm-tp-identity .cat {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--ghvm-t-stage);
    color: var(--ghvm-t-teal-deep);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ghvm-tp-identity h1 {
    margin: 0 0 6px;
    font-family: var(--font-secondary);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--ghvm-t-ink);
    line-height: 1.2;
}

.ghvm-tp-identity .role {
    margin: 0 0 16px;
    color: var(--ghvm-t-muted);
    font-size: 14.5px;
    font-weight: 550;
    line-height: 1.4;
}

.ghvm-tp-cta {
    display: grid;
    gap: 8px;
}

.ghvm-tp-cta .edu-btn {
    width: 100%;
    justify-content: center;
    height: 44px !important;
    line-height: 42px !important;
    border-radius: 999px !important;
    padding: 0 16px !important;
    font-size: 13.5px !important;
}

.ghvm-tp-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.ghvm-tp-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f7f6;
    border: 1px solid rgba(20, 32, 43, 0.06);
    color: var(--ghvm-t-ink);
    text-decoration: none !important;
    font-size: 15px;
}

.ghvm-tp-social a:hover {
    background: var(--ghvm-t-teal);
    border-color: var(--ghvm-t-teal);
    color: #fff;
}

.ghvm-tp-contact-list {
    list-style: none;
    margin: 0;
    padding: 16px;
    display: grid;
    gap: 10px;
}

.ghvm-tp-contact-list a,
.ghvm-tp-contact-list .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #f8fbfa;
    border: 1px solid rgba(20, 32, 43, 0.06);
    text-decoration: none !important;
    color: inherit;
}

.ghvm-tp-contact-list a:hover {
    border-color: rgba(26, 182, 157, 0.35);
    background: var(--ghvm-t-stage);
}

.ghvm-tp-contact-list .ico {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--ghvm-t-teal-deep);
    font-size: 16px;
    flex-shrink: 0;
}

.ghvm-tp-contact-list .lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ghvm-t-muted);
}

.ghvm-tp-contact-list .val {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ghvm-t-ink);
    word-break: break-word;
}

.ghvm-tp-main {
    display: grid;
    gap: 16px;
}

.ghvm-tp-panel {
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.07);
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 14px 36px rgba(20, 32, 43, 0.05);
}

@media (max-width: 575px) {
    .ghvm-tp-panel {
        padding: 20px 16px;
        border-radius: 18px;
    }
}

.ghvm-tp-panel h2 {
    margin: 0 0 14px;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 800;
    color: var(--ghvm-t-ink);
}

.ghvm-tp-bio {
    color: #3d4656;
    font-size: 15.5px;
    line-height: 1.7;
}

.ghvm-tp-bio > *:first-child { margin-top: 0; }
.ghvm-tp-bio > *:last-child { margin-bottom: 0; }
.ghvm-tp-bio p { margin: 0 0 1em; }
.ghvm-tp-bio ul, .ghvm-tp-bio ol { margin: 0 0 1em; padding-left: 1.2em; }

.ghvm-tp-bio-empty {
    color: var(--ghvm-t-muted);
    margin: 0;
}

.ghvm-tp-related-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 28px 0 14px;
}

.ghvm-tp-related-head h2 {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 800;
    color: var(--ghvm-t-ink);
}

.ghvm-tp-related-head a {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ghvm-t-teal-deep);
    text-decoration: none !important;
}

.ghvm-tp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 991px) {
    .ghvm-tp-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .ghvm-tp-related-grid {
        grid-template-columns: 1fr;
    }
}

