/* ===================================================
   Project Detail Page — ssection + goals layout
   Extracted from Project/Detail.cshtml
=================================================== */

.ssection {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ssection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #263370 0%, #0c7fae 50%, #263370 100%);
    background-size: 200% 100%;
}

.ssection:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 2px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Goals section */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .goals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .goals-grid {
        grid-template-columns: 1fr;
    }
}

.goal-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 208, 240, 0.2);
    border-color: #0c7fae;
}

.goal-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c7fae, #263370);
    color: white;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(93, 208, 240, 0.3);
}

.goal-icon i {
    font-size: 28px;
}

.goal-card h3 {
    font-weight: 800;
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 10px;
}

.goal-card p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 14px;
}

.about-intro {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.about-intro p {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
}
