/* Event detail */

.event-detail {
    padding: 0;
}

.event-detail .container {
    max-width: 800px;
}

.event-detail__title {
    margin: 0 0 20px;

    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #1D3F77;
}

.event-detail__meta {
    margin-bottom: 40px;
}

.event-detail__meta-list {
    display: flex;
    align-items: center;
    gap: 24px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.4;

    color: #7A7A7A;
}

.event-detail__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-detail__meta-item img,
.event-detail__share img {
    width: 16px;
    height: 16px;

    flex-shrink: 0;
}

.event-detail__share {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.4;

    color: #1D3F77;
}

.event-detail__image {
    height: 400px;

    overflow: hidden;
    border-radius: 10px;

    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.1);
}

.event-detail__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Event content */

.event-content {
    padding: 40px 0 0;
}

.event-content .container {
    max-width: 800px;
}


/* Article content */

.article-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: #6B6B6B;
}

.article-content h2 {
    margin: 0 0 30px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;

    color: #1D3F77;
}

.article-content h3 {
    margin: 30px 0 20px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    color: #1D3F77;
}

.article-content p {
    margin: 0 0 24px;
}

.article-content ul {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin: 0 0 40px;
    padding: 0;

    list-style: none;
}

.article-content li {
    position: relative;

    padding-left: 12px;

    color: #4B4B4B;
}

.article-content li::before {
    content: "";

    position: absolute;
    top: 0.65em;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #F7941D;

    transform: translateY(-50%);
}

.article-content a {
    color: #F7941D;
    text-decoration: none;
}

.article-content img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.article-content figure {
    position: relative;

    height: 400px;
    margin: 40px 0;

    overflow: hidden;
    border-radius: 10px;
}

.article-content figure::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 35%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.article-content figcaption {
    position: absolute;
    left: 40px;
    bottom: 36px;
    z-index: 2;

    max-width: 620px;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;

    color: #ffffff;
}


/* Event navigation */

.event-navigation {
    padding: 80px 0;
}

.event-navigation .container {
    max-width: 800px;
}

.event-navigation__share,
.event-navigation__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.4;

    color: #1D3F77;
}

.event-navigation__share img,
.event-navigation__back img {
    width: 16px;
    height: 16px;

    flex-shrink: 0;
}

/* =========================
   Event detail adaptive
========================= */

@media (max-width: 767px) {
    .event-detail,
    .event-content,
    .event-navigation {
        padding-left: 0;
        padding-right: 0;
    }

    .event-detail .container,
    .event-content .container,
    .event-navigation .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .event-detail__title {
        margin-bottom: 18px;

        font-size: 22px;
        line-height: 1.05;
    }

    .event-detail__meta {
        margin-bottom: 24px;
    }

    .event-detail__meta-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;

        font-size: 12px;
    }

    .event-detail__share {
        margin-top: 4px;

        font-size: 12px;
    }

    .event-detail__image {
        height: 210px;
        border-radius: 8px;
    }

    .event-content {
        padding-top: 24px;
    }

    .article-content {
        font-size: 14px;
        line-height: 1.45;
    }

    .article-content h2 {
        margin-bottom: 18px;

        font-size: 15px;
        line-height: 1.25;
    }

    .article-content h3 {
        margin: 24px 0 16px;

        font-size: 14px;
        line-height: 1.3;
    }

    .article-content p {
        margin-bottom: 18px;
    }

    .article-content ul {
        gap: 14px;
        margin-bottom: 28px;
    }

    .article-content li {
        padding-left: 14px;
    }

    .article-content li::before {
        top: 0.7em;

        width: 5px;
        height: 5px;
    }

    .article-content figure {
        height: 220px;
        margin: 28px 0;

        border-radius: 8px;
    }

    .article-content figcaption {
        left: 18px;
        right: 18px;
        bottom: 18px;

        max-width: none;

        font-size: 15px;
        line-height: 1.2;
    }

    .event-navigation {
        padding: 36px 0;
    }

    .event-navigation .row {
        --bs-gutter-y: 18px;
    }

    .event-navigation__share,
    .event-navigation__back {
        font-size: 13px;
    }
}
