/* GSSRP Page Specific Styles */

.header-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

.gssrp-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Reuse .research-area card but allow simple full-width text sections */
.gssrp-section {
    position: relative;
    background: var(--gradient-crystal);
    border: 1px solid rgba(226, 224, 243, 0.5);
    border-radius: 1rem;
    padding: 2rem 2.5rem 2rem 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gssrp-section:hover {
    box-shadow:
        0 12px 40px rgba(159, 108, 247, 0.1),
        0 4px 12px rgba(247, 168, 216, 0.08);
    border-color: rgba(159, 108, 247, 0.25);
}

.gssrp-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gssrp-section p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.gssrp-section p:last-child {
    margin-bottom: 0;
}

.gssrp-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
    transition: all 0.2s ease;
}

.gssrp-section a:hover {
    opacity: 0.8;
    border-bottom-style: solid;
}

/* Project list */
.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.6rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-color);
}

.eligibility-list li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .gssrp-section {
        padding: 1.5rem 1.5rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .gssrp-section {
        padding: 1.25rem 1.25rem 1.25rem 1.75rem;
    }

    .gssrp-section h2 {
        font-size: 1.2rem;
    }
}
