/* ---------------------------------------------------
   POLICY PAGE STYLES
--------------------------------------------------- */

.page-policy {
    background: #f8f8f8;
}

/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */

.policy-hero {
    position: relative;
    min-height: calc(80vh - var(--header-height));
    height: auto;
    background: #fff;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #FCE300;
    z-index: 0;
}

.policy-hero-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 90px;
    right: 90px;
    width: auto;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
}

.policy-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.policy-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-left: 130px;
}

.policy-hero-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.policy-hero-title {
    font-size: 96px;
    font-weight: 200;
    line-height: 1.04;
    color: #ffffff;
    max-width: 862px;
}

/* ---------------------------------------------------
   BREADCRUMB
--------------------------------------------------- */

.policy-breadcrumb {
    padding: 40px 0;
    background: #f8f8f8;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 90px;
}

.breadcrumb-link {
    font-size: 14px;
    color: #878787;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #3f3f3f;
}

.breadcrumb-sep {
    display: flex;
    align-items: center;
}

.breadcrumb-sep svg {
    width: 16px;
    height: 16px;
}

.breadcrumb-current {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}

/* ---------------------------------------------------
   MAIN CONTENT SECTION
--------------------------------------------------- */

.policy-content {
    padding: 0px 0 100px;
    background: #f8f8f8;
    scroll-margin-top: 100px;
}

.policy-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 90px;
}

/* ---------------------------------------------------
   SIDEBAR
--------------------------------------------------- */

.policy-sidebar {
    flex: 0 0 392px;
    position: sticky;
    top: 100px;
}

.policy-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow:
        -27px 26px 11px 0px rgba(153, 153, 153, 0),
        -17px 17px 10px 0px rgba(153, 153, 153, 0.01),
        -10px 9px 8px 0px rgba(153, 153, 153, 0.05),
        -4px 4px 6px 0px rgba(153, 153, 153, 0.09),
        -1px 1px 3px 0px rgba(153, 153, 153, 0.1);
}

.policy-sidebar-title {
    font-size: 16px;
    font-weight: 500;
    color: #3f3f3f;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.policy-sidebar-divider {
    position: relative;
    height: 4px;
    margin-bottom: 24px;
}

.policy-sidebar-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 4px;
    background: #d9d9d9;
    border-radius: 2px;
}

.policy-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-menu-item {
    margin-bottom: 16px;
    position: relative;
}

.policy-menu-item:last-child {
    margin-bottom: 0;
}

.policy-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #b4b4b4;
    transition: color 0.2s ease;
    padding-left: 32px;
    position: relative;
}

.policy-menu-item.active .policy-menu-link {
    color: #3f3f3f;
}

.policy-menu-item.active .policy-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 4px;
    background: #FCE300;
}

.policy-menu-link:hover {
    color: #3f3f3f;
}

.policy-menu-number {
    font-size: 14px;
    line-height: 24px;
}

.policy-menu-text {
    flex: 1;
}

/* ---------------------------------------------------
   MAIN CONTENT AREA
--------------------------------------------------- */

.policy-main {
    flex: 1;
    min-width: 0;
}

/* Full Width Layout (no sidebar) */
.policy-wrapper-full {
    display: block;
}

.policy-main-full {
    max-width: 900px;
    margin: 0 auto;
}

.policy-main-full .policy-subtitle {
    margin-top: 40px;
}

.policy-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #3f3f3f;
    margin-bottom: 20px;
}

.policy-intro {
    margin-bottom: 40px;
}

.policy-intro p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #878787;
}

.policy-intro ul {
    margin: 12px 0 0;
    padding-left: 18px;
    list-style-type: disc;
}

.policy-intro li {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #878787;
}

.policy-subtitle,.policy-intro h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #3f3f3f;
    margin-bottom: 24px;
}

.policy-principles {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #878787;
}

.policy-principles p {
    margin-bottom: 12px;
}

.policy-signature {
    margin-top: 24px;
}

.policy-main p,
.policy-main ul {
    margin-bottom: 12px;
}
.policy-main strong{
    color: #1f1f1f;
    font-weight: 600;
}
.policy-signature p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1f1f1f;
}

/* ---------------------------------------------------
   NEWS SECTION
--------------------------------------------------- */

.policy-news {
    position: relative;
    padding: 50px 0 70px;
    background: #f8f8f8;
    overflow: hidden;
}

.policy-news-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 492px;
    height: 569px;
    background: url('../images/bg-news-background.webp') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    transform: rotate(180deg) scaleY(-1);
    pointer-events: none;
}

.policy-news-inner {
    position: relative;
    z-index: 1;
}

.policy-news-header {
    margin-bottom: 50px;
}

.policy-news-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: #3f3f3f;
}

.policy-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.policy-news-footer {
    display: flex;
    justify-content: flex-end;
}

.policy-news-all {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    background: #000000;
    color: #f8f8f8;
    padding: 20px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-news-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FCE300;
    transition: width 0.3s ease;
}

.policy-news-all:hover::before {
    width: 100%;
}

.policy-news-all-text,
.policy-news-all-arrow {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.policy-news-all:hover .policy-news-all-text,
.policy-news-all:hover .policy-news-all-arrow {
    color: #000000;
}

.policy-news-all:hover .policy-news-all-arrow svg path {
    stroke: #000000;
}

.policy-news-all-arrow {
    display: flex;
    align-items: center;
}

/* News card & title-line styles are now in news-section.css (global) */

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 1600px) {
    .policy-hero-title {
        font-size: 72px;
    }
}

@media (max-width: 1400px) {
    .policy-hero-title{
        font-size: 52px;
    }
    .policy-wrapper,.breadcrumb-nav{ padding: 0px 0px; }
    .policy-sidebar{ flex: 0 0 300px; }
    .policy-menu-link{ font-size: 12px;}
    .policy-menu-item.active .policy-menu-link::before{ top: 10px;}
}

@media (max-width: 1200px) {

    .policy-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .policy-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }

    .policy-sidebar {
        flex: 0 0 auto;
        width: 100%;
        position: static;
    }

    .policy-hero-title {
        font-size: 56px;
    }

    .policy-hero-content {
        padding-left: 60px;
    }

    .policy-hero-bg {
        left: 40px;
        right: 40px;
    }

    .policy-wrapper {
        padding: 0 40px;
    }

    .breadcrumb-nav {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        height: auto;
        min-height: 400px;
    }

    .policy-hero-bg {
        width: 100%;
        left: 0;
        transform: none;
    }

    .policy-hero-title {
        font-size: 40px;
    }

    .policy-news-grid {
        grid-template-columns: 1fr;
    }

    .policy-news-title {
        font-size: 32px;
    }

    .policy-title,
    .policy-subtitle {
        font-size: 24px;
    }
}