/* ===== SOCIETAL IMPACT STYLES (PREFIX: si-) ===== */

/* Hero Section */
.si-hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(90deg, #e8f5ee 0%, #f5f9f7 50%, #ffffff 100%);
}

.si-hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.si-hero-left {
    flex: 1;
    max-width: 550px;
}

.si-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.si-hero-logo {
    display: inline-block;
    height: 60px;
    width: auto;
    vertical-align: middle;
    margin-left: 8px;
}

.si-text-blue {
    color: #0066cc;
}

.si-hero-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    text-align: justify;
}

.si-hero-right {
    flex: 1;
}

.si-logo-hero-text {
    height: 70px;
    display: inline-flex;
    margin-bottom: -16px;
}

.si-hero-img {
    width: 100%;
    height: auto;
}


/* About Section */
.si-about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fafbfc;
}

.si-about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.si-about-left {
    flex: 0 0 420px;
}

.si-about-img {
    width: 100%;
    height: auto;
}

.si-about-right {
    flex: 1;
}

.si-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.si-about-text {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 32px;
    text-align: justify;
}

.si-about-btn-wrapper {
    text-align: left;
}

.si-btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #00A652;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.si-btn-primary:hover {
    background: #018845;
}

/* Publications Section */
.si-publications-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #ffffff;
}

.si-publications-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
}

.si-publications-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.si-publications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.si-publication-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.si-publication-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.si-publication-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.si-publication-body {
    padding: 20px;
}

.si-publication-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.si-publication-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
}

.si-publication-date i {
    font-size: 14px;
}

.si-publications-footer {
    text-align: center;
}

.si-btn-more {
    display: inline-block;
    padding: 14px 40px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.si-btn-more:hover {
    background: #16a34a;
}


/* ===== DAMPAK INVESTASI SOSIAL SECTION ===== */

/* Investment Section */
.si-investment-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #ffffff;
}

.si-investment-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.si-investment-left {
    flex: 0 0 420px;
}

.si-investment-img {
    width: 100%;
    height: auto;
}

.si-investment-right {
    flex: 1;
}

.si-investment-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.si-investment-text {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 32px;
    text-align: justify;
}

/* SROI Card */
.si-sroi-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.si-sroi-card-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.si-sroi-average {
    text-align: center;
}

.si-sroi-year,
.si-sroi-average {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.si-sroi-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.si-sroi-select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.si-sroi-select:focus {
    outline: none;
    border-color: #22c55e;
}

.si-sroi-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0;
    transition: opacity 0.3s ease;
}

.si-investment-note {
    padding: 16px 20px;
    background: #dcfce7;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.si-investment-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #166534;
    margin: 0;
}
