/* Employees and Community Page Styles */

#page-employees .employees-intro {
    padding: var(--primary-pHeight50) 0;
    margin: 0 auto;
    font-size: var(--primary-fontSize16);
    color: #25272E;
}

/* Goals Section */
#page-employees .employees-no-margin {
    margin-top: 0!important;
}
#page-employees .goals-section {
    padding: 60px 0;
}

#page-employees .goals-header {
    text-align: center;
    margin-bottom: 40px;
}

#page-employees .goals-header h2 {
    font-size: var(--primary-fontSize28);
    color: var(--primary-green);
    margin-bottom: 15px;
}

#page-employees .goals-header p {
    font-size: var(--primary-fontSize14);
    color: #666;
}
/* Highlights Section with Carousel */
#page-employees .highlights-section {
    margin-bottom: var(--primary-pHeight50)
}
#page-employees .highlights-content {
    display: flex;
}
#page-employees .highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    color: var(--bg-white);
    background: var(--primary-green);
}

#page-employees .highlights-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: max-content;
    padding-left: var(--primary-fontSize48);
}

#page-employees .highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

#page-employees .highlight-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    flex-shrink: 0;
}

#page-employees .highlight-item p {
    display: flex;
    align-items: center;
    line-height: 30px;
    font-weight: 400;
    font-size: var(--primary-fontSize16);
    color: #FFFFFF;
}
#page-employees .highlight-special-num {
    font-weight: var(--primary-font-weight600);
    font-size: var(--primary-fontSize28);
    color: #FFFFFF;
}

#page-employees .highlights-container {
    max-width: 1240px;
    margin: 0 auto;
}

#page-employees .highlights-header {
    text-align: center;
    margin-bottom: 50px;
}

/* #page-employees .highlights-header h3 {
    font-size: 24px;
    color: #333;
} */

#page-employees .highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Carousel Styles */
#page-employees .carousel-container {
    position: relative;
    overflow: hidden;
}

#page-employees .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

#page-employees .carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

#page-employees .carousel-slide img {
    width: 100%;
    height: 100%;
}

#page-employees .carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

#page-employees .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

#page-employees .carousel-dot.active {
    width: 40px;
    height: 8px;
    border-radius: 4px;
    background: var(--primary-green);
}

#page-employees .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s;
}

#page-employees .carousel-arrow:hover {
    background: var(--bg-white);
}

#page-employees .carousel-arrow.prev {
    left: 15px;
}

#page-employees .carousel-arrow.next {
    right: 15px;
}

#page-employees .highlights-right .carousel-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
/* Highlights Info */
#page-employees .highlights-info {
    padding: 42px 40px 0 38px;
    background: #F5F5F5;
}

#page-employees .highlight-content {
    position: relative;
    display: none;
}

#page-employees .highlight-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
#page-employees .highlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#page-employees .highlight-header .highlight-todetail {
    font-weight: 400;
    font-size: 18px;
    color: var(--primary-green);
}
#page-employees .highlight-header .highlight-todetail::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 18px;
    background: url('../../images/esg/employeesAndCommunity/toDetail_icon.png') no-repeat;
    background-size: 100% 100%;
    margin-left: 8px;
}
#page-employees .highlight-header .highlight-todetail:hover {
    opacity: 0.9;
}
#page-employees .highlight-content .highlight-content-title {
    display: flex;
    flex-direction: column;
}
#page-employees .highlight-content .highlight-content-title::after {
    content: '';
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #25272E;
    border-radius: 2px;
    margin: 22px 0 20px 0;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#page-employees .highlight-content h4 {
    font-weight: 500;
    font-size: 24px;
    color: #25272E;
}

#page-employees .highlight-content p {
    font-weight: 400;
    font-size: var(--primary-fontSize14);
    color: #25272E;
    line-height: 23px;
}
#page-employees .highlight-content-paragraph + .highlight-content-paragraph {
    margin-top: 40px;
}
#page-employees .highlight-paragraph-num {
    color: var(--primary-green);
}
#page-employees .highlight-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

#page-employees .stat-item {
    text-align: center;
}

#page-employees .stat-number {
    font-size: var();
    font-weight: bold;
    color: var(--primary-green);
}

#page-employees .stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
