.surf-location-1629 {
    padding: 80px 20px;
    background-color: #F9F7F1; /* Warm Sand fallback */
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout: Split */
.surf-location-1629.sla-layout-split {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "content media"
        "footer footer";
}

.surf-location-1629.sla-layout-split .sla-content-col { grid-area: content; }
.surf-location-1629.sla-layout-split .sla-media-col { grid-area: media; }
.surf-location-1629.sla-layout-split .sla-footer { grid-area: footer; }

/* Layout: Centered */
.surf-location-1629.sla-layout-centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 1000px;
}
.surf-location-1629.sla-layout-centered .sla-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.surf-location-1629.sla-layout-centered .sla-media-col {
    margin-top: 20px;
}

/* Typography & Content */
.sla-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #D35400; /* Terracotta */
    font-weight: 600;
}

.sla-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0A192F; /* Ocean Navy */
    line-height: 1.2;
}

.sla-intro .sla-body, .sla-intro .sla-support {
    font-size: 16px;
    line-height: 1.6;
    color: #2C3E50;
    margin-bottom: 20px;
}

/* Cards Grid */
.sla-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.sla-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.sla-card-icon {
    font-size: 24px;
    margin-bottom: 15px;
    color: #D35400;
}
.sla-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #D35400;
}

.sla-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0A192F;
}

.sla-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #2C3E50;
}

/* Media */
.sla-media-wrap {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}
.sla-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer & Buttons */
.sla-footer {
    text-align: center;
    margin-top: 20px;
}

.sla-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 30px;
}

.sla-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sla-btn {
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sla-btn-primary {
    background-color: #0A192F;
    color: #fff;
}

.sla-btn-secondary {
    background-color: transparent;
    border: 2px solid #0A192F;
    color: #0A192F;
}

/* Responsive */
@media (max-width: 991px) {
    .surf-location-1629.sla-layout-split {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "content"
            "media"
            "footer";
    }
}

@media (max-width: 767px) {
    .surf-location-1629 {
        padding: 60px 15px;
    }
    .sla-cards-grid {
        grid-template-columns: 1fr;
    }
    .sla-buttons {
        flex-direction: column;
    }
    .sla-btn {
        width: 100%;
    }
}
