.social-hero {
    padding: 80px 0 60px;
    text-align: center;
}
.social-hero-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: #5a1111; /* dark red/brown */
    font-size: 3rem;
    margin-bottom: 20px;
}
.social-hero-subtitle {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    color: #4a4a4a;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.social-card {
    border-radius: 20px;
    padding: 0; /* Remove generic padding */
    margin-bottom: 40px;
    color: #fff;
    display: flex;
    align-items: stretch; /* Stretch children to match height */
    gap: 0; /* Remove gap */
    overflow: hidden; /* Ensure image respects border radius */
}
.social-card-reverse {
    flex-direction: row-reverse;
}
.social-card-reverse .social-card-content {
    /* Push content to the right so it aligns with the left image edge */
    justify-content: center;
}
@media (max-width: 991px) {
    .social-card, .social-card-reverse {
        flex-direction: column;
        text-align: center;
    }
}

.social-card-content {
    flex: 1;
    padding: 40px 60px; /* Give padding only to text content */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.social-card-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 2rem;
    margin-bottom: 10px;
}
.social-card-subtitle {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.social-card-desc {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.social-card-img-wrapper {
    flex: 1;
    display: flex;
}
.social-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Remove border radius and shadow as it will flush with card corners */
}

.bg-dark-green {
    background-color: #245c41;
}
.bg-orange {
    background-color: #f76820;
}
.bg-light-green {
    background-color: #61bb61;
}

.social-cta {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    overflow: hidden;
    margin-top: 40px;
}

.social-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/primary.png') no-repeat center center;
    background-size: cover;
    opacity: 0.2; /* This specifically lowers the opacity of the background image */
    z-index: 1;
}

.social-cta-content {
    position: relative;
    z-index: 2;
}

.social-cta-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    color: #1b263b;
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.social-cta-subtitle {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    color: #4a4a4a;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.social-cta-text {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    color: #4a4a4a;
    font-size: 1rem;
    margin-bottom: 30px;
}
.social-cta-btn {
    background-color: #f76820;
    color: #fff;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-weight: bold;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}
.social-cta-btn:hover {
    background-color: #e55710;
    color: #fff;
}