/* Climate Change Page Styles */

#page-climate .climate-intro {
    margin-top: var(--primary-pHeight50);
    font-size: var(--primary-fontSize16);
    color: #25272E;
}
/* Goals Section */
#page-climate .goals-section {
    padding: 60px 0;
}

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

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

#page-climate .goals-header p {
    font-size: var(--primary-fontSize14);
    color: #666;
}

/* Core Measures Section - Full Width Background */
#page-climate .measures-section {
    max-width: 100%;
    padding: 45px 0 289px 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: var(--primary-pHeight50);
}
#page-climate .measures-section::before, #page-climate .measures-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/esg/climateChange/measures_bg.png') no-repeat;
    background-size: cover;
    background-position: center;
}
#page-climate .measures-section::before {
    filter: blur(20px) brightness(1.1);
    transform: scale(1.1);
}
#page-climate .measures-section::after {
    max-width: 1440px;
    margin: 0 auto; 
}
#page-climate .measures-content {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#page-climate .measures-header {
    font-weight: var(--primary-font-weight600);
    font-size: var(--primary-fontSize48);
    color: #FFFFFF;
    line-height: 67px;
    margin-bottom: 14px;
}


#page-climate .measures-grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#page-climate .measure-card {
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 260px;
    height: 345px;
    padding: 33px 26px 42px 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

#page-climate .measure-card:hover {
    transform: translateY(-5px);
}

#page-climate .measure-card h4 {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: var(--primary-font-weight600);
    font-size: 24px;
    color: #25272E;
    line-height: 30px;
}

#page-climate .measure-card h4::after {
    content: '';
    display: inline-flex;
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: #25272E;
    margin-top: 20px;
}

#page-climate .measure-card p {
    font-weight: 400;
    font-size: var(--primary-fontSize16);
    color: #25272E;
    line-height: 30px;
}
