/* =========================================================
   PRESS RELEASE PAGE VARIABLES
========================================================= */
:root {
    --color1: #1F3B5D;
    --color2: #FBD405;

    --press-white: #ffffff;
    --press-blue-dark: #06124D;
    --press-blue-mid: #082475;
    --press-blue-bright: #0862F4;
    --press-text-soft: rgba(255, 255, 255, 0.86);
    --press-border: rgba(255, 255, 255, 0.24);
}

/* =========================================================
   PRESS RELEASE HERO SECTION
========================================================= */
.press-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(120deg, #06124D 0%, #082579 40%, #0755E6 76%, #06124D 100%);
    color: var(--press-white);
}

.press-hero-inner {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 92px 0 0;
}

.press-hero-row {
    position: relative;
    z-index: 2;
    min-height: 668px;
}

.press-hero-content {
    position: relative;
    z-index: 6;
    height: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 72px 92px;
}

.press-hero-badge {
    width: fit-content;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 28px;
    margin-bottom: 48px;
    border: 2px solid rgba(8, 98, 244, 0.65);
    border-radius: 999px;
    background: rgba(8, 98, 244, 0.14);
    color: var(--color2);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    animation: pressBadgeFloat 3.8s ease-in-out infinite;
}

.press-hero-badge i {
    color: var(--press-white);
    font-size: 20px;
}

.press-hero h1 {
    margin: 0;
    color: var(--press-white);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.4px;
}

.press-hero h2 {
    margin: 20px 0 0;
    color: var(--press-white);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.8px;
}

.press-hero h2 span {
    color: var(--color2);
}

.press-hero-line {
    width: 94px;
    height: 5px;
    margin: 38px 0 34px;
    border-radius: 999px;
    background: var(--color2);
}

.press-hero p {
    max-width: 740px;
    margin: 0;
    color: var(--press-text-soft);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.press-hero-visual {
    position: relative;
    z-index: 4;
    height: 100%;
    min-height: 668px;
}

.press-hero-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    max-width: 850px;
    width: auto;
    object-fit: contain;
    transform-origin: bottom right;
    filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.28));
    transition: transform 0.45s ease;
}

.press-hero-visual:hover .press-hero-img {
    transform: translateY(-7px) scale(1.018);
}

/* =========================================================
   PRESS RELEASE HERO ANIMATION
========================================================= */
.press-hero .fade-up {
    opacity: 0;
    animation: pressFadeUp 0.85s ease forwards;
}

.press-hero .delay-1 {
    animation-delay: 0.18s;
}

@keyframes pressFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pressBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* =========================================================
   PRESS RELEASE HERO RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .press-hero-inner {
        min-height: 710px;
        padding-top: 82px;
    }

    .press-hero-row {
        min-height: 628px;
    }

    .press-hero-content {
        padding-left: 72px;
        padding-bottom: 64px;
    }

    .press-hero h1 {
        font-size: 76px;
    }

    .press-hero h2 {
        font-size: 24px;
    }

    .press-hero p {
        font-size: 22px;
    }

    .press-hero-img {
        max-width: 760px;
    }
}

@media (max-width: 1199.98px) {
    .press-hero-inner {
        min-height: 660px;
        padding-top: 74px;
    }

    .press-hero-row {
        min-height: 586px;
    }

    .press-hero-content {
        padding-left: 52px;
        padding-bottom: 54px;
    }

    .press-hero-badge {
        min-height: 48px;
        margin-bottom: 34px;
        font-size: 17px;
    }

    .press-hero-badge i {
        font-size: 20px;
    }

    .press-hero h1 {
        font-size: 48px;
    }

    .press-hero h2 {
        font-size: 24px;
    }

    .press-hero p {
        font-size: 18px;
    }

    .press-hero-img {
        max-width: 650px;
    }
}

@media (max-width: 991.98px) {
    .press-hero-inner {
        min-height: auto;
        padding: 64px 0 0;
    }

    .press-hero-row {
        min-height: auto;
    }

    .press-hero-content {
        max-width: 760px;
        height: auto;
        margin: 0 auto;
        padding: 0 24px 34px;
        text-align: center;
        align-items: center;
    }

    .press-hero-badge,
    .press-hero-line {
        margin-left: auto;
        margin-right: auto;
    }

    .press-hero h1 {
        font-size: 48px;
    }

    .press-hero h2 {
        font-size: 24px;
    }

    .press-hero p {
        max-width: 650px;
        font-size: 17px;
    }

    .press-hero-visual {
        min-height: 500px;
        height: 500px;
    }

    .press-hero-img {
        left: 50%;
        right: auto;
        bottom: 0;
        max-height: 100%;
        max-width: 600px;
        transform: translateX(-50%);
        transform-origin: bottom center;
    }

    .press-hero-visual:hover .press-hero-img {
        transform: translateX(-50%) translateY(-6px) scale(1.018);
    }
}

@media (max-width: 767.98px) {
    .press-hero-inner {
        padding-top: 48px;
    }

    .press-hero-badge {
        min-height: 42px;
        gap: 10px;
        padding: 8px 18px;
        margin-bottom: 26px;
        font-size: 14px;
    }

    .press-hero-badge i {
        font-size: 18px;
    }

    .press-hero h1 {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .press-hero h2 {
        margin-top: 14px;
        font-size: 20px;
    }

    .press-hero-line {
        width: 78px;
        height: 5px;
        margin: 24px auto;
    }

    .press-hero p {
        font-size: 15.5px;
        line-height: 1.6;
    }

    .press-hero-visual {
        min-height: 390px;
        height: 390px;
    }

    .press-hero-img {
        max-width: 490px;
    }
}

@media (max-width: 575.98px) {
    .press-hero-inner {
        padding-top: 40px;
    }

    .press-hero h1 {
        font-size: 34px;
    }

    .press-hero h2 {
        font-size: 18px;
    }

    .press-hero p {
        font-size: 14.5px;
    }

    .press-hero-visual {
        min-height: 320px;
        height: 320px;
    }

    .press-hero-img {
        max-width: 400px;
    }
}

/* =========================================================
   PRESS RELEASE MAIN SECTION
========================================================= */
.press-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 34px 28px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.press-main-wrap {
    display: grid;
    grid-template-columns: 315px 1fr;
    gap: 34px;
    width: 100%;
}

.press-sidebar {
    position: relative;
    min-height: 840px;
    padding: 32px 24px;
    border: 1px solid rgba(8, 98, 244, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.press-search-box h3,
.press-category-box h3 {
    margin: 0 0 18px;
    color: var(--press-blue-dark);
    font-size: 18px;
    font-weight: 900;
}

.press-search-input {
    height: 52px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(31, 59, 93, 0.12);
    border-radius: 10px;
    background: var(--press-white);
    transition: all 0.35s ease;
}

.press-search-input:hover,
.press-search-input:focus-within {
    border-color: var(--press-blue-bright);
    box-shadow: 0 12px 28px rgba(8, 98, 244, 0.10);
}

.press-search-input i {
    color: #7a86a4;
    font-size: 16px;
}

.press-search-input input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--press-blue-dark);
    font-size: 14px;
    font-weight: 600;
}

.press-category-box {
    margin-top: 42px;
}

.press-category {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(31, 59, 93, 0.08);
    border-radius: 9px;
    background: var(--press-white);
    color: #536180;
    text-decoration: none;
    transition: all 0.35s ease;
}

.press-category span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
}

.press-category i {
    color: var(--press-blue-bright);
    font-size: 16px;
}

.press-category strong {
    min-width: 28px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf5ff;
    color: var(--press-blue-bright);
    font-size: 12px;
    font-weight: 900;
}

.press-category.active,
.press-category:hover {
    background: #eaf3ff;
    color: var(--press-blue-bright);
    transform: translateX(5px);
    text-decoration: none;
}

.press-info-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 280px;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #edf5ff 0%, #ffffff 100%);
}

.press-info-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--press-blue-bright);
    font-size: 26px;
    transition: all 0.35s ease;
}

.press-info-card:hover .press-info-icon {
    transform: scale(1.08) rotate(-4deg);
}

.press-info-card h4 {
    margin: 0 0 10px;
    color: var(--press-blue-dark);
    font-size: 14px;
    font-weight: 900;
}

.press-info-card p {
    margin: 0;
    color: #536180;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.65;
}

.press-content {
    min-width: 0;
}

.press-content-head {
    margin-bottom: 24px;
}

.press-content-head h2 {
    margin: 0 0 8px;
    color: var(--press-blue-dark);
    font-size: 24px;
    font-weight: 900;
}

.press-content-head p {
    margin: 0;
    color: #536180;
    font-size: 14px;
    font-weight: 600;
}

.press-list {
    display: grid;
    gap: 14px;
}

.press-item {
    display: grid;
    grid-template-columns: 270px 1fr 170px;
    align-items: center;
    gap: 28px;
    min-height: 184px;
    padding: 16px 28px 16px 16px;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 13px;
    background: var(--press-white);
    box-shadow: 0 12px 30px rgba(31, 59, 93, 0.05);
    transition: all 0.35s ease;
}

.press-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(31, 59, 93, 0.11);
}

.press-thumb {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 9px;
    background: #eaf3ff;
}

.press-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.press-item:hover .press-thumb img {
    transform: scale(1.06);
}

.press-category-label {
    width: fit-content;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.press-category-label.yellow {
    background: #fff1b9;
    color: #9b7300;
}

.press-category-label.blue {
    background: #e7f0ff;
    color: var(--press-blue-bright);
}

.press-body h3 {
    margin: 0 0 10px;
    color: var(--press-blue-dark);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.28;
}

.press-body a {
    text-decoration: none !important;
}

.press-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
    color: #6f7b99;
    font-size: 13px;
    font-weight: 700;
}

.press-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.press-body p {
    margin: 0;
    color: #536180;
    font-size: 14.2px;
    font-weight: 500;
    line-height: 1.55;
}

.press-action {
    height: 100%;
    display: grid;
    justify-items: end;
    align-content: space-between;
    padding: 8px 0;
}

.press-action span {
    color: #7d89a5;
    font-size: 14px;
    font-weight: 700;
}

.press-action a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--press-blue-bright);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.press-action a:hover {
    gap: 15px;
    text-decoration: none;
}

.press-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.press-pagination a,
.press-pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 59, 93, 0.10);
    border-radius: 8px;
    background: var(--press-white);
    color: #536180;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.press-pagination a.active,
.press-pagination a:hover {
    color: var(--press-white);
    background: var(--press-blue-bright);
    text-decoration: none;
}

.press-pagination a.disabled {
    opacity: 0.45;
    pointer-events: none;
}

/* Animation */
.press-main .fade-up {
    opacity: 0;
    animation: pressMainFadeUp 0.85s ease forwards;
}

.press-main .delay-1 {
    animation-delay: 0.16s;
}

@keyframes pressMainFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1399.98px) {
    .press-item {
        grid-template-columns: 230px 1fr 150px;
        gap: 22px;
    }

    .press-thumb {
        height: 135px;
    }
}

@media (max-width: 1199.98px) {
    .press-main-wrap {
        grid-template-columns: 280px 1fr;
        gap: 24px;
    }

    .press-item {
        grid-template-columns: 210px 1fr;
    }

    .press-action {
        grid-column: 2 / 3;
        display: flex;
        justify-content: space-between;
        border-top: 1px solid rgba(8, 98, 244, 0.10);
        padding-top: 12px;
    }
}

@media (max-width: 991.98px) {
    .press-main {
        padding: 24px 18px;
    }

    .press-main-wrap {
        grid-template-columns: 1fr;
    }

    .press-content {
        order: 1;
    }

    .press-sidebar {
        order: 2;
        min-height: auto;
    }

    .press-info-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 24px;
    }

    .press-item {
        grid-template-columns: 240px 1fr;
    }
}

@media (max-width: 767.98px) {
    .press-main {
        padding: 18px 12px;
    }

    .press-sidebar,
    .press-item {
        border-radius: 14px;
    }

    .press-content-head {
        text-align: center;
    }

    .press-item {
        grid-template-columns: 1fr;
        padding: 16px;
        text-align: left;
    }

    .press-thumb {
        height: 210px;
    }

    .press-category-label,
    .press-meta {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .press-action {
        grid-column: auto;
    }

    .press-pagination {
        flex-wrap: wrap;
    }
}

/* =========================================================
   PRESS SHOW HERO
========================================================= */
.press-show-hero {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #edf5ff 48%, #cfe0ff 100%);
}

.press-show-hero-inner {
    min-height: 610px;
    display: flex;
    align-items: center;
    padding: 110px 92px 92px;
}

.press-show-content {
    max-width: 1350px;
}

.press-show-badge {
    width: fit-content;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 28px 10px 18px;
    margin-bottom: 52px;
    border-radius: 18px;
    background: rgba(8, 98, 244, 0.10);
    color: var(--press-blue-bright);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    animation: pressBadgeFloat 3.8s ease-in-out infinite;
}

.press-show-badge i {
    color: var(--press-blue-bright);
    font-size: 24px;
}

.press-show-content h1 {
    max-width: 1300px;
    margin: 0;
    color: var(--press-blue-dark);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -2px;
}

/* Responsive */
@media (max-width: 1399.98px) {
    .press-show-hero-inner {
        min-height: 560px;
        padding: 96px 72px 82px;
    }

    .press-show-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 1199.98px) {
    .press-show-hero-inner {
        min-height: 500px;
        padding: 86px 52px 72px;
    }

    .press-show-content h1 {
        font-size: 48px;
    }

    .press-show-badge {
        min-height: 18px;
        margin-bottom: 38px;
        font-size: 19px;
    }

    .press-show-badge i {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {
    .press-show-hero-inner {
        min-height: auto;
        padding: 76px 28px 70px;
        text-align: center;
        justify-content: center;
    }

    .press-show-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .press-show-content h1 {
        font-size: 42px;
        line-height: 1.25;
    }
}

@media (max-width: 767.98px) {
    .press-show-hero-inner {
        padding: 60px 18px 56px;
    }

    .press-show-badge {
        min-height: 46px;
        gap: 10px;
        padding: 8px 18px;
        margin-bottom: 30px;
        border-radius: 14px;
        font-size: 15px;
    }

    .press-show-badge i {
        font-size: 19px;
    }

    .press-show-content h1 {
        font-size: 32px;
        letter-spacing: -0.6px;
    }
}

@media (max-width: 575.98px) {
    .press-show-content h1 {
        font-size: 27px;
    }
}

/* =========================================================
   PRESS SHOW CONTENT
========================================================= */

.press-detail-card {
    overflow: hidden;
    border: 1px solid rgba(8, 98, 244, 0.12);
    border-radius: 14px;
    background: var(--press-white);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.press-detail-inner {
    padding: 28px 34px 26px;
}

.press-detail-inner h2 {
    max-width: 860px;
    margin: 12px 0 18px;
    color: var(--press-blue-dark);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.5px;
}

.press-detail-image {
    overflow: hidden;
    height: 250px;
    margin: 24px 0 20px;
    border-radius: 10px;
    background: #eaf3ff;
    box-shadow: 0 14px 32px rgba(31, 59, 93, 0.10);
}

.press-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.press-detail-card:hover .press-detail-image img {
    transform: scale(1.025);
}

.press-detail-body p {
    margin: 0 0 16px;
    color: #536180;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.72;
}

.press-back-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1.5px solid rgba(8, 98, 244, 0.26);
    border-radius: 7px;
    background: var(--press-white);
    color: var(--press-blue-bright);
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.35s ease;
}

.press-back-btn:hover {
    color: var(--press-white);
    background: var(--press-blue-bright);
    border-color: var(--press-blue-bright);
    transform: translateY(-4px);
    text-decoration: none;
}

.press-back {
    padding-top: 18px;
}

.share-btn.copied {
    color: var(--press-white) !important;
    background: var(--press-blue-bright);
    border-color: var(--press-blue-bright);
}

/* Responsive */
@media (max-width: 991.98px) {
    .press-detail-inner {
        padding: 26px 24px 24px;
    }

    .press-detail-inner h2 {
        font-size: 28px;
    }

    .press-detail-image {
        height: 230px;
    }
}

@media (max-width: 767.98px) {
    .press-detail-inner {
        padding: 22px 16px;
        text-align: center;
    }

    .press-detail-inner h2 {
        font-size: 23px;
    }

    .press-detail-image {
        height: 190px;
    }

    .press-detail-body p {
        text-align: left;
        font-size: 14.5px;
    }

    .press-back-btn {
        width: 100%;
    }
}