/* ============================================================
   MUSIC PAGE — Styles
   Robert Mamani · Sky Hawk
   ============================================================ */

/* ============================================================
   BLOCK 1: HERO
   ============================================================ */
.music-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.music-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.music-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) saturate(1.2);
}

.music-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 11, 26, 0.4) 0%,
            rgba(13, 11, 26, 0.2) 50%,
            rgba(13, 11, 26, 1) 100%);
}

.music-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    max-width: 900px;
}

.music-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--sand);
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.6);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease;
}

.music-hero__wave {
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.music-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* ============================================================
   BLOCK 2: PHILOSOPHY
   ============================================================ */
.music-philosophy {
    padding: 100px 0;
    background: var(--bg-dark);
}

.music-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.music-philosophy__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
}

.music-philosophy__card:hover {
    background: rgba(212, 160, 23, 0.05);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-8px);
}

.music-philosophy__icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.music-philosophy__card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.music-philosophy__intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.music-philosophy__details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   BLOCK 3: TYPES
   ============================================================ */
.music-types {
    padding: 100px 0;
    background: var(--bg-section);
}

.music-types__list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.music-type {
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
    cursor: pointer;
}

.music-type:hover,
.music-type.active {
    border-color: var(--gold);
}

.music-type__header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.music-type__icon {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
}

.music-type__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-heading);
    flex-grow: 1;
    transition: color var(--transition);
}

.music-type.active .music-type__title {
    color: var(--gold);
}

.music-type__arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.music-type.active .music-type__arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.music-type__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background: rgba(212, 160, 23, 0.03);
}

.music-type.active .music-type__content {
    max-height: 200px;
    /* Approximate max height */
    padding: 0 32px 32px 92px;
    /* Indent to align with title */
}

.music-type__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ============================================================
   BLOCK 4: QUOTE
   ============================================================ */
.music-quote {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.music-quote__bg {
    position: absolute;
    inset: 0;
    background: url('../photos/kollektsiya_muzykalnykh_instrumentov.jpg') center/cover no-repeat;
    filter: brightness(0.2) blur(4px);
    z-index: 1;
}

.music-quote .container {
    position: relative;
    z-index: 2;
}

.music-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--sand);
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    border: none;
    padding: 0;
}

/* ============================================================
   BLOCK 5: PLAYER
   ============================================================ */
.music-player-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.audio-player {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.audio-player__controls {
    text-align: center;
    margin-bottom: 40px;
}

.audio-player__info {
    margin-bottom: 24px;
}

.audio-player__track-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.audio-player__track-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.audio-player__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.audio-player__btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color var(--transition), transform 0.2s;
    padding: 10px;
}

.audio-player__btn:hover {
    color: var(--gold);
}

.audio-player__btn--play {
    font-size: 2.5rem;
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-player__btn--play:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.audio-player__progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.audio-player__progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s linear;
}

.audio-player__playlist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover,
.track-item.active {
    background: rgba(212, 160, 23, 0.1);
}

.track-item.active .track-info h4 {
    color: var(--gold);
}

.track-info h4 {
    font-size: 1rem;
    margin: 0 0 4px;
    color: var(--text-light);
}

.track-info p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
}

.track-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--terracotta);
    align-self: flex-start;
    margin-top: 4px;
}

/* ============================================================
   BLOCK 6: VIDEOS
   ============================================================ */
.music-videos {
    padding: 100px 0;
    background: var(--bg-section);
}

.music-videos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.music-video-card {
    cursor: pointer;
    group: video-card;
}

.music-video-card__preview {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: border-color var(--transition);
}

.music-video-card:hover .music-video-card__preview {
    border-color: var(--gold);
}

.music-video-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.music-video-card:hover .music-video-card__preview img {
    transform: scale(1.05);
}

.music-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(13, 11, 26, 0.7);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
    z-index: 2;
}

.music-video-card:hover .music-video-card__play {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.music-video-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.music-video-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================================
   BLOCK 7: MANIFESTO
   ============================================================ */
.music-manifesto {
    padding: 80px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.music-manifesto__grid {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.music-manifesto__grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.3), transparent);
    z-index: 1;
}

.music-manifesto__item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 20px;
}

.music-manifesto__icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 24px;
    transition: all var(--transition);
}

.music-manifesto__item:hover .music-manifesto__icon {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
    transform: scale(1.1);
}

.music-manifesto__item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.music-manifesto__item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   BLOCK 8: SUB-NAV
   ============================================================ */
.music-nav {
    padding: 100px 0;
    background: var(--bg-section);
}

.music-nav__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.music-nav__card {
    position: relative;
    height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    group: nav-card;
}

.music-nav__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.music-nav__card:hover .music-nav__bg {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.music-nav__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.music-nav__content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--sand);
    margin-bottom: 12px;
}

.music-nav__content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 90%;
}

.music-nav__link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.music-nav__card:hover .music-nav__link {
    color: #fff;
}

/* ============================================================
   BLOCK 9: BIG QUOTE
   ============================================================ */
.music-big-quote {
    padding: 100px 0;
    background: #08060e;
    text-align: center;
}

.music-big-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--sand);
    font-style: italic;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    border: none;
    padding: 0;
}

.music-big-quote__author {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ============================================================
   BLOCK 10: CTA
   ============================================================ */
.music-cta {
    padding: 80px 0;
    background: var(--bg-dark);
    text-align: center;
}

.music-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.music-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    transition: all var(--transition);
    min-width: 220px;
    text-decoration: none;
}

.music-cta__btn--primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.music-cta__btn--primary:hover {
    background: #e6b32e;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.music-cta__btn--secondary {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.music-cta__btn--secondary:hover {
    background: rgba(212, 160, 23, 0.1);
    transform: translateY(-2px);
}

.music-cta__btn--ghost {
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-cta__btn--ghost:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .music-philosophy__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-videos__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .music-hero {
        min-height: 60vh;
    }

    .music-philosophy__grid {
        grid-template-columns: 1fr;
    }

    .music-type.active .music-type__content {
        padding: 0 24px 24px 24px;
        max-height: 300px;
        /* Allow more height on mobile due to wrapping */
    }

    .music-manifesto__grid {
        flex-direction: column;
        gap: 40px;
    }

    .music-manifesto__grid::before {
        width: 2px;
        height: auto;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, transparent, rgba(212, 160, 23, 0.3), transparent);
    }

    .music-nav__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .music-cta__buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
}


/* ============================================================
   PAGE: INSTRUMENTS (/music/instruments)
   ============================================================ */

/* Breadcrumbs */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.2);
}

/* Intro Section */
.instr-intro {
    padding: 100px 0;
    background: var(--bg-dark);
}

.instr-intro__grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.instr-intro__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.instr-intro__quote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--gold);
    font-style: italic;
    padding-left: 30px;
    border-left: 3px solid var(--gold);
    margin: 0;
}

/* Catalog Section */
.instr-catalog {
    padding: 80px 0;
    background: var(--bg-section);
}

.instr-card {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(212, 160, 23, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.instr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 160, 23, 0.3);
}

.instr-card:last-child {
    margin-bottom: 0;
}

.instr-card--reverse {
    flex-direction: row-reverse;
}

.instr-card__text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.instr-card__subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.instr-card__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 24px;
}

.instr-card__text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.instr-card__props {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prop {
    display: flex;
    flex-direction: column;
}

.prop strong {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 4px;
}

.prop span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.instr-card__img {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.instr-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.instr-card:hover .instr-card__img img {
    transform: scale(1.05);
}

.placeholder-img {
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.instr-card--reverse .placeholder-img {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Legend Section */
.instr-legend {
    position: relative;
    padding: 120px 0;
    background: url('../photos/robert_s_muzykantom_na_prirode.jpg') center/cover no-repeat fixed;
    /* Fallback bg */
    text-align: center;
    color: var(--sand);
}

.instr-legend::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 26, 0.85);
}

.instr-legend__cornice {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background-image: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.3;
}

.instr-legend__cornice--top {
    top: 0;
}

.instr-legend__cornice--bottom {
    bottom: 0;
}

.instr-legend .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.instr-legend__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.instr-legend__content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.9;
}

.instr-legend__content p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 4px;
}

/* Small Grid Section */
.instr-grid-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.instr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.instr-small-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.instr-small-card:hover {
    background: rgba(212, 160, 23, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.instr-small-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.instr-small-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Materials Section */
.instr-materials {
    padding: 60px 0;
    background: var(--bg-section);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.instr-materials__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.material-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.material-item:hover {
    opacity: 1;
}

.material-icon {
    font-size: 2.5rem;
}

.material-item span:last-child {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.music-cta__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--sand);
    margin-bottom: 32px;
}

/* Responsive Instruments */
@media (max-width: 1024px) {
    .instr-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instr-intro__quote {
        margin-top: 0;
        border-left: none;
        padding-left: 0;
        text-align: center;
        font-size: 1.25rem;
    }

    .instr-card {
        flex-direction: column;
    }

    .instr-card--reverse {
        flex-direction: column;
    }

    .instr-card__text {
        padding: 40px 32px;
    }

    .instr-card__img {
        min-height: 300px;
        order: -1;
        /* Image always on top on mobile/tablet */
    }

    .herit-roots__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .herit-map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .herit-timeline {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -27px;
    }

    .nature-icons {
        gap: 24px;
    }

    .herit-map-grid {
        grid-template-columns: 1fr;
    }

    .occasions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}