/* =========================================
   WORKSHOPS LANDING PAGE
========================================= */

.fv-workshops {
    width: 100%;
    padding: 60px 20px;
}

.fv-workshops__container {
    max-width: 1400px;
    margin: 0 auto;
}

.fv-workshops__header {
    text-align: center;
    margin-bottom: 50px;
}

.fv-workshops__heading {
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 15px;
}


.fv-workshops__description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   WORKSHOP GRID
========================================= */

.fv-workshops__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 25px;
}


/* =========================================
   WORKSHOP CARD
========================================= */

.fv-workshop-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fv-workshop-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.fv-workshop-card__image-link {
    display: block;
    width: 100%;
    overflow: hidden;
}

.fv-workshop-card__image,
.fv-workshop-card__image-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.fv-workshop-card__image-link.sold-out img {
    opacity: 0.4;
}

.fv-workshop-card__image-link.sold-out:hover img {
    opacity: 0.4;
    transform: none;
}

.fv-workshop-card__image {
    transition: transform 0.4s ease;
}

.fv-workshop-card__image-link:hover .fv-workshop-card__image {
    transform: scale(1.05);
}

.fv-workshop-card__image-placeholder {
    background: #f2f2f2;
}

.fv-workshop-card__content {
    display: flex;
    flex-direction: column;
    /* padding-top: 20px; */
    display: flex; 
    justify-content: space-between;
}

.fv-workshop-card__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 8px;
    display: flex;
    justify-content: start;
}

.fv-workshop-card__title a {
    color: inherit;
    text-decoration: none;
}

.fv-workshop-card__date {
    font-size: 12px !important;
    line-height: normal !important;
    letter-spacing: 1.5px;
    margin: 0;
    display: flex;
    justify-content: start;
    text-transform: uppercase;
    color: #6a6a6a;
}

.fv-workshop-card__price {
    font-size: 14px !important;
}

.fv-workshop-card__availability {
    font-size: 10px !important;
    line-height: normal !important;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    justify-content: start;
    text-transform: uppercase;
    color: #6a6a6a;
    opacity: 0.7;
}

.fv-workshop-card__button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: auto;

    border: 1px solid #000;

    color: #000;
    background: transparent;

    font-size: 14px;
    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.fv-workshop-card__button:hover {
    background: #000;
    color: #fff;
}


/* =========================================
   SINGLE WORKSHOP PAGE
========================================= */

.fv-workshop-single {
    width: 100%;
    padding: 60px 20px;
}

.fv-workshop-single__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;

    max-width: 1400px;
    margin: 0 auto;
}

.fv-workshop-single__gallery {
    width: 100%;
}

.fv-workshop-single__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fv-workshop-single__information {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fv-workshop-single__title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 15px;
}

.fv-workshop-single__date {
    font-size: 20px;
    margin: 0 0 25px;
}

.fv-workshop-single__price {
    font-size: 24px;
    margin: 0 0 30px;
}

.fv-workshop-single__description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.fv-workshop-single__description p {
    margin-bottom: 15px;
}


/* =========================================
   BOOKING SECTION
========================================= */

.fv-workshop-single__booking {
    width: 100%;
    margin-bottom: 20px;
}

.fv-workshop-single__booking form.cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fv-workshop-single__booking .quantity input {
    width: 65px;
    padding: 12px 8px;
    border: 1px solid #ccc;

    font-size: 16px;
    text-align: center;
}

.fv-workshop-single__booking .single_add_to_cart_button {
    padding: 14px 35px;

    border: 1px solid #000;
    border-radius: 0;

    background: #000;
    color: #fff;

    font-size: 14px;
    font-weight: 400;

    cursor: pointer;
}

.fv-workshop-single__booking .single_add_to_cart_button:hover {
    background: transparent;
    color: #000;
}

.fv-workshop-single__stock {
    font-size: 14px;
    margin: 0;
}

.fv-workshop-single__unavailable {
    font-size: 12px !important;
    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .fv-workshops__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fv-workshop-single__container {
        gap: 35px;
    }

    .fv-workshop-single__title {
        font-size: 34px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .fv-workshops {
        padding: 35px 15px;
    }

    .fv-workshops__heading {
        font-size: 28px;
    }

    .fv-workshops__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 12px;
    }

    .fv-workshop-card__content {
        padding-top: 12px;
    }

    .fv-workshop-card__title {
        font-size: 18px;
    }

    .fv-workshop-card__date {
        font-size: 12px !important;
        line-height: normal !important;
        display: flex;
        justify-content: start;
        text-transform: uppercase;
        color: #6a6a6a;
        margin: 0;
        letter-spacing: 1.5px;
    }

    .fv-workshop-card__price {
        font-size: 14px;
    }

    .fv-workshop-card__button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .fv-workshop-single {
        padding: 25px 15px;
    }

    .fv-workshop-single__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fv-workshop-single__title {
        font-size: 32px;
    }

    .fv-workshop-single__date {
        font-size: 18px;
    }

}