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

.workshop-page {
    margin: 0 auto;
    padding: 60px 0 90px;

    box-sizing: border-box;

    color: #080808;
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.workshop-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);

    gap: 56px;

    align-items: start;
}

/* =========================================
   WORKSHOP FEATURED IMAGE
   FULL CONTAINER WIDTH
========================================= */



.workshop-featured-image {
    width: 100%;
    height: 350px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.workshop-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   TITLE + INTRO
========================================================= */

.workshop-title {
    margin: 0 0 14px;

    font-family: inherit;
    font-size: 48px;
    line-height: 1.25;
    font-weight: 700;

    color: #000;
}


.workshop-intro {
    max-width: 720px;

    margin: 0 0 30px;

    line-height: 1.65;

    color: #333333;
}


.workshop-intro::first-line {
    font-weight: 600;
    color: #080808;
}


.workshop-closing-note {
    max-width: 720px;

    margin: 18px 0 0;


    line-height: 1.65;

    color: #333333;
}


/* =========================================================
   LISTS: "What You'll Get to Learn" / "Bonus Perks"
========================================================= */

.workshop-list-heading {
    margin: 0 0 12px;

    font-family: inherit;
    line-height: 1.3;
    font-weight: 700;

    color: #080808;
}


.workshop-list-heading:not(:first-child) {
    margin-top: 26px;
}


.workshop-checklist {
    list-style: none;

    margin: 0;
    padding: 0;
}


.workshop-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 11px;

    line-height: 1.5;

    color: #333333;
}


.workshop-checklist li:last-child {
    margin-bottom: 0;
}


.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 16px;
    height: 16px;

    margin-top: 2px;

    background: #47ac08;
    border-radius: 50%;

    color: #ffffff;
}


.check-icon svg {
    width: 9px;
    height: 9px;
}


/* =========================================================
   DIVIDER
========================================================= */

.workshop-divider {
    border: none;
    border-top: 1px solid #e5e5e5;

    margin: 32px 0;
}


.workshop-divider--full {
    grid-column: 1 / -1;

    margin: 60px 0 0;
}


/* =========================================================
   SPEAKERS DETAILS BOX
========================================================= */

.workshop-speakers-box {
    border: 1px solid #e5e5e5;
    border-radius: 10px;

    padding: 28px;

    box-sizing: border-box;
}


.workshop-speakers-box-title {
    margin: 0 0 22px;

    font-family: inherit;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    color: #080808;
}


.speaker-row {
    display: grid;

    grid-template-columns: 100px minmax(0, 1fr);

    gap: 26px;

    padding-bottom: 22px;
    margin-bottom: 22px;

    border-bottom: 1px solid #eeeeee;
}


.speaker-row:last-child {
    padding-bottom: 0;
    margin-bottom: 0;

    border-bottom: none;
}


.speaker-photo {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    overflow: hidden;

    background: #eef1f4;
}


.speaker-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.speaker-name {
    margin: 12px 0 2px;

    line-height: 1.3;
    font-weight: 700;

    color: #080808;
}


.speaker-role {
    margin: 0;

    line-height: 1.3;

    color: #666666;
}


.speaker-bullets {
    list-style: none;

    margin: 0;
    padding: 0;
}


.speaker-bullets li {
    position: relative;

    margin-bottom: 9px;

    padding-left: 14px;

    line-height: 1.55;

    color: #444444;
}


.speaker-bullets li:last-child {
    margin-bottom: 0;
}


.speaker-bullets li::before {
    content: "-";

    position: absolute;
    left: 0;

    color: #999999;
}


/* =========================================================
   SIDEBAR — EVENT DETAILS
========================================================= */

.workshop-sidebar {
    position: sticky;
    top: 40px;
}


.event-details-box {
    border: 1px solid #e5e5e5;
    border-radius: 10px;

    padding: 28px;

    box-sizing: border-box;

    transition: box-shadow 0.2s ease;
}


.event-details-box.is-stuck {
    box-shadow: 0 10px 24px rgba(8, 8, 8, 0.08);
}


.event-details-title {
    margin: 0 0 18px;

    font-family: inherit;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    color: #080808;
}


.event-detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;

    padding: 14px 0;

    border-bottom: 1px solid #eeeeee;
}


.event-detail-row:first-of-type {
    padding-top: 0;
}


.event-detail-row.no-border {
    border-bottom: none;
    padding-bottom: 0;
}


.event-detail-label {
    flex-shrink: 0;

    font-weight: 700;

    color: #080808;
}


.event-detail-value {
    text-align: right;

    line-height: 1.5;

    color: #555555;
}

/* =========================================================
   RESERVE BUTTON
========================================================= */

.reserve_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    box-sizing: border-box;
}

/* =========================================================
   RELATED WORKSHOPS
========================================================= */

.workshop-related {
    grid-column: 1 / -1;

    margin-top: 40px;
}


.workshop-related-title {
    margin: 0 0 26px;

    font-family: inherit;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;

    color: #080808;
}


.workshop-related-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


.workshop-card {
    display: flex;
    flex-direction: column;

    border: 1px solid #e5e5e5;
    border-radius: 10px;

    overflow: hidden;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.workshop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(8, 8, 8, 0.08);
}


.workshop-card-image {
    display: block;

    width: 100%;
    height: 160px;

    overflow: hidden;
}


.workshop-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}


.workshop-card:hover .workshop-card-image img {
    transform: scale(1.04);
}


.workshop-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 18px 18px 20px;
}


.workshop-card-title {
    margin: 0 0 8px;

    font-family: inherit;
    line-height: 1.35;
    font-weight: 700;

    color: #080808;
}


.workshop-card-excerpt {
    margin: 0;

    line-height: 1.55;

    color: #666666;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.workshop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    margin-top: auto;
    padding-top: 16px;
}


.workshop-card-date {
    display: flex;
    align-items: center;
    gap: 6px;


    color: #666666;
}


.workshop-card-date .calendar-icon {
    display: inline-flex;

    width: 13px;
    height: 13px;

    flex-shrink: 0;
}


.workshop-card-date .calendar-icon svg {
    width: 100%;
    height: 100%;
}


.workshop-card-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 38px;

    padding: 0 16px;

    box-sizing: border-box;
    flex-shrink: 0;

    background: #0c6aa5;
    border-radius: 19px;

    color: #ffffff;
    text-decoration: none;

    font-weight: 600;

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


.workshop-card:hover .workshop-card-readmore {
    background: #094f7c;
}


.workshop-card-readmore .workshop-arrow {
    width: 17px;
    height: 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;
    border-radius: 50%;

    line-height: 1;
}


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

@media (max-width: 1000px) {

    .workshop-page {
        width: calc(100% - 80px);
    }


    .workshop-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .workshop-sidebar {
        position: static;
    }


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

}


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

@media (max-width: 600px) {

    .workshop-page {
        width: calc(100% - 40px);

        padding: 45px 0 60px;
    }


    .workshop-title {
        font-size: 26px;
    }


    .speaker-row {
        grid-template-columns: 1fr;
    }


    .speaker-photo {
        margin-bottom: 8px;
    }


    .workshop-related-title {
        font-size: 24px;
    }


    .workshop-related-grid {
        grid-template-columns: 1fr;
    }

}