.wrt-section-1634 {
    padding: 80px 20px;
    background-color: #F9F7F1; /* Warm Sand fallback */
    display: grid;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout Options */
.wrt-section-1634.wrt-layout-vertical {
    grid-template-columns: 1fr 1.5fr;
    grid-template-areas: 
        "header timeline"
        "footer footer";
    align-items: start;
}

.wrt-section-1634.wrt-layout-horizontal {
    grid-template-columns: 1fr;
    grid-template-areas: 
        "header"
        "timeline"
        "footer";
}

.wrt-section-1634.wrt-layout-vertical .wrt-header-col { grid-area: header; position: sticky; top: 100px; }
.wrt-section-1634.wrt-layout-vertical .wrt-timeline-col { grid-area: timeline; }
.wrt-section-1634.wrt-layout-vertical .wrt-footer { grid-area: footer; }

.wrt-section-1634.wrt-layout-horizontal .wrt-header-col { grid-area: header; text-align: center; max-width: 800px; margin: 0 auto; }
.wrt-section-1634.wrt-layout-horizontal .wrt-timeline-col { grid-area: timeline; }
.wrt-section-1634.wrt-layout-horizontal .wrt-footer { grid-area: footer; }

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

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

.wrt-intro .wrt-body {
    font-size: 18px;
    line-height: 1.6;
    color: #2C3E50;
    margin-bottom: 30px;
}

.wrt-image-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}
.wrt-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Timeline Vertical */
.wrt-timeline-wrapper.wrt-timeline-line {
    position: relative;
    padding-left: 30px;
}

.wrt-timeline-wrapper.wrt-timeline-line::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: rgba(211, 84, 0, 0.2); /* Terracotta transparent */
}

/* Timeline Horizontal Override */
.wrt-layout-horizontal .wrt-timeline-wrapper.wrt-timeline-line {
    display: flex;
    gap: 20px;
    padding-left: 0;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}
.wrt-layout-horizontal .wrt-timeline-wrapper.wrt-timeline-line::before {
    display: none;
}

.wrt-day-item {
    position: relative;
    margin-bottom: 30px;
}
.wrt-layout-horizontal .wrt-day-item {
    min-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    margin-bottom: 0;
}

.wrt-marker {
    position: absolute;
    left: -30px;
    top: 25px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #D35400;
    border: 3px solid #F9F7F1;
}
.wrt-layout-horizontal .wrt-marker {
    display: none;
}

.wrt-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.wrt-card:hover {
    transform: translateY(-3px);
}

.wrt-day-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #D35400;
    margin-bottom: 10px;
}

.wrt-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0A192F;
}

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

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

.wrt-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

/* Responsive */
@media (max-width: 991px) {
    .wrt-section-1634.wrt-layout-vertical {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "timeline"
            "footer";
    }
    .wrt-section-1634.wrt-layout-vertical .wrt-header-col {
        position: static;
    }
}

@media (max-width: 767px) {
    .wrt-section-1634 {
        padding: 60px 15px;
        gap: 40px;
    }
    
    .wrt-intro h2 { font-size: 28px; }
    
    .wrt-layout-horizontal .wrt-timeline-wrapper.wrt-timeline-line {
        flex-direction: column;
        padding-bottom: 0;
    }
    .wrt-layout-horizontal .wrt-day-item {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .wrt-buttons {
        flex-direction: column;
    }
    .wrt-btn {
        width: 100%;
        text-align: center;
    }
}
