/* Kék zóna előnézet (template-parts/home/blue.php) */

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


/***
    Row, col
***/
.blue-row {
    flex-direction: row;
    justify-content: stretch;
}

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

.blue-col:first-child {
    flex: 6;
    justify-content: center;
}

.blue-col:last-child {
    flex: 4;
}

/***
    Image
***/
.blue-col img {
    width: 600px;
    height: auto;
    object-fit: cover;
}

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

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

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

.blue-skeleton-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
}

/***
    Title
***/

.blue-title {
    font-family: "Cormorant Garamond";
    font-size: 42px;
    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;
}

/***
    Description
***/
.blue-description {
    display: block;
    box-sizing: border-box;
    width: 100%;
}

.blue-description p {
    text-align: left;
    font-size: 20px;
}

/***
    Queries
***/

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

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

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

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

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

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

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

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