/* Feminin glow előnézet (template-parts/home/gold.php) */

.gold-row,
.gold-col {
    box-sizing: border-box;
    display: flex;
    /* height: 100%; */
}

.gold-row {
    flex-direction: row;
    justify-content: stretch;
}

.gold-col {
    position: relative;
    flex-direction: column;
}

.gold-col:first-child {
    flex: 4;
}

.gold-col:last-child {
    flex: 6;
    justify-content: center;
    align-items: flex-end;
}

.gold-col img {
    width: 600px;
    height: auto;
    object-fit: cover;
}

.gold-image-container {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: fit-content;
}

.gold-image {
    margin-top: 60px;
    margin-right: 60px;
    z-index: 2;
    filter: drop-shadow(1px 1px 10px var(--color-main));
}

.gold-skeleton-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    height: auto;
    overflow: hidden;
}

.gold-skeleton-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark))
}

.gold-title {
    font-family: "Cormorant Garamond";
    font-size: 42px;
    text-align: center;
    margin-top: 0;
    font-weight: 500;
    background: -webkit-linear-gradient(180deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.gold-description {
    display: block;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    margin: 15px 0 30px 0;
}

.gold-description p {
    font-size: 20px;
}


/**
    Pillars
**/
.gold-offers .pillars-row {
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.gold-offers .pillars-col {
    flex: 0 0 calc(calc(100% / 3) - 2rem);
}

.gold-offers .pillar-button {
    margin-top: 15px;
}


/***
    Queries
***/

@media (max-width: 1440px) {
    .gold-col img {
        width: 500px;
    }
}

@media (max-width: 1366px) {
    .gold-col img {
        width: 450px;
    }
}

@media (max-width: 1280px) {
    .gold-col img {
        width: 400px;
    }
}

@media screen and (max-width: 980px) {
    .gold-row {
        flex-wrap: wrap-reverse;
        gap: 2rem;
    }

    .gold-col {
        flex: initial !important;
    }

    .gold-col img {
        width: 100%;
        margin-left: 0;
    }

    .gold-skeleton-image-container {
        display: none;
    }

    .gold-description p {
        text-align: left;
    }

    .gold-offers .pillars-col {
        flex: 1;
    }
}