/* =========================================================
   RELEASE NOTES PAGE
   ========================================================= */

.release-notes-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 60px;
}


/* =========================================================
   HERO
   ========================================================= */

.release-hero {
    background: #001f3f;
    color: #ffffff;
    border-radius: 0 0 16px 16px;
    margin-bottom: 50px;
}

.release-hero-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 42px 40px;
}

.release-hero-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.release-hero-icon span {
    font-size: 32px;
    line-height: 1;
}

.release-hero h1 {
    margin: 0 0 8px;
    font-size: 34px;
    font-weight: 700;
}

.release-hero p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}


/* =========================================================
   SECTION
   ========================================================= */

.release-section {
    padding: 0 30px;
}

.release-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.release-section-heading h2 {
    margin: 0 0 10px;
    color: #001f3f;
    font-size: 28px;
}

.release-section-heading p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   RELEASE CARD
   ========================================================= */

.release {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 3px 12px rgba(0, 31, 63, 0.06);
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5e7eb;
}

.release-version {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 20px;
    background: #e8f1f8;
    color: #001f3f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.release h3 {
    margin: 10px 0 0;
    color: #001f3f;
    font-size: 24px;
}

.release-date {
    color: #64748b;
    font-size: 14px;
    white-space: nowrap;
    padding-top: 8px;
}

.release-summary {
    padding: 22px 0 8px;
}

.release-summary p,
.release-placeholder > p {
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   RELEASE CATEGORIES
   ========================================================= */

.release-category {
    margin-top: 28px;
}

.release-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
}

.release-category-title span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
}

.release-category-title.new {
    color: #166534;
}

.release-category-title.new span {
    background: #dcfce7;
}

.release-category-title.improved {
    color: #1d4ed8;
}

.release-category-title.improved span {
    background: #dbeafe;
}

.release-category-title.fixed {
    color: #92400e;
}

.release-category-title.fixed span {
    background: #fef3c7;
}

.release-category ul {
    margin: 0;
    padding-left: 24px;
}

.release-category li {
    margin-bottom: 10px;
    padding-left: 4px;
    color: #475569;
    line-height: 1.6;
}

.release-category li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.release-placeholder {
    background: #f8fafc;
    border-style: dashed;
}

.release-placeholder .release-header {
    border-bottom: 0;
    padding-bottom: 0;
}


/* =========================================================
   CALL TO ACTION
   ========================================================= */

.release-cta {
    margin: 50px 30px 0;
    border-radius: 16px;
    background: #001f3f;
    color: #ffffff;
}

.release-cta-content {
    text-align: center;
    padding: 42px 30px;
}

.release-cta h2 {
    margin: 0 0 10px;
    font-size: 27px;
}

.release-cta p {
    margin: 0 0 24px;
    opacity: 0.9;
    font-size: 16px;
}

.release-cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 7px;
    background: #ffffff;
    color: #001f3f;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease,
                box-shadow 0.15s ease;
}

.release-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .release-hero {
        border-radius: 0 0 12px 12px;
        margin-bottom: 35px;
    }

    .release-hero-content {
        padding: 30px 22px;
        gap: 16px;
    }

    .release-hero-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .release-hero-icon span {
        font-size: 25px;
    }

    .release-hero h1 {
        font-size: 27px;
    }

    .release-hero p {
        font-size: 15px;
    }

    .release-section {
        padding: 0 15px;
    }

    .release-section-heading h2 {
        font-size: 24px;
    }

    .release {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .release-header {
        flex-direction: column;
        gap: 8px;
    }

    .release-date {
        padding-top: 0;
    }

    .release h3 {
        font-size: 21px;
    }

    .release-cta {
        margin: 35px 15px 0;
    }

    .release-cta-content {
        padding: 34px 20px;
    }

    .release-cta h2 {
        font-size: 23px;
    }

}