/* ==========================================
   Shared Core Base Section Styles
   ========================================== */
.section-block {
    width: 100%;
    padding: 4rem 1.5rem;
    box-sizing: border-box;
    position: relative;
}

.section-block__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   1. Hero Banner Component Styles
   ========================================== */
.section-block--hero-banner {
    padding: 6rem 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.section-block--hero-banner .section-block__title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.section-block--hero-banner .section-block__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-block--hero-banner .section-block__btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.section-block--hero-banner .section-block__btn:hover {
    background-color: #1d4ed8;
}

/* ==========================================
   2. Standard Text Block Component Styles
   ========================================== */
.section-block--text {
    background-color: #ffffff;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

.section-block--text .section-block__heading {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section-block--text .section-block__body {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==========================================
   3. Feature Grid / Cards Variant (Example)
   ========================================== */
.section-block--feature-grid {
    background-color: #f8fafc;
}

.section-block--feature-grid .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}