/* ==========================================================================
   WACH — Interior Pages Stylesheet
   Depends on wach-b.css custom properties
   ========================================================================== */

/* ---------- Interior: Typography bump (feedback Jack — naranja muy chica) ---------- */
.section-label {
    font-size: 0.85rem;
}

.heading-accent {
    font-size: 1.1em;
}

/* ---------- Interior Hero ---------- */
.hero-interior {
    background: var(--wach-navy);
    padding: 2.5rem 0 2rem;
    position: relative;
}

.hero-interior-tall {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-interior-tall::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 29, 62, 0.75) 0%,
        rgba(27, 43, 91, 0.85) 100%
    );
}

.hero-interior-minimal {
    padding: 3.2rem 0 2.5rem;
    background: var(--wach-white);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-wach {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.breadcrumb-wach a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-wach a:hover {
    color: var(--wach-orange);
}

.breadcrumb-wach .separator {
    color: rgba(255,255,255,0.25);
    margin: 0 0.5rem;
}

.breadcrumb-wach .current {
    color: var(--wach-orange);
}

/* Dark breadcrumb (for white bg) */
.breadcrumb-wach-dark a {
    color: var(--wach-gray-400);
}

.breadcrumb-wach-dark .separator {
    color: var(--wach-gray-300);
}

.breadcrumb-wach-dark .current {
    color: var(--wach-orange);
}

/* ---------- Practice Area: 2-Col Navy Block ---------- */
.pa-intro-block {
    background: var(--wach-navy);
    padding: 2.8rem 0;
}

.pa-intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
}

.pa-intro-text strong {
    color: #fff;
}

/* ---------- Practice Area: Alternating Sections ---------- */
.pa-alternating {
    padding: 4rem 0;
}

.pa-alternating:nth-child(even) {
    background: var(--wach-gray-100);
}

.pa-alternating-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.pa-alternating-content {
    padding: 2rem 0;
}

.pa-alternating-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--wach-navy);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.pa-alternating-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--wach-text-light);
}

/* ---------- Practice Area: Sidebar Nav ---------- */
.pa-sidebar {
    position: sticky;
    top: 100px;
}

.pa-sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wach-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--wach-orange);
}

.pa-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pa-sidebar-list li {
    border-bottom: 1px solid var(--wach-gray-200);
}

.pa-sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wach-gray-600);
    text-decoration: none;
    transition: all var(--transition-base);
}

.pa-sidebar-list a:hover {
    color: var(--wach-orange);
    padding-left: 0.5rem;
}

.pa-sidebar-list a.active {
    color: var(--wach-orange);
    font-weight: 600;
}

.pa-sidebar-list a svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pa-sidebar-list a:hover svg,
.pa-sidebar-list a.active svg {
    opacity: 1;
}

/* ---------- Practice Area: Key Points Grid (Opcion B) ---------- */
.pa-keypoint {
    background: var(--wach-white);
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid var(--wach-gray-200);
    transition: all var(--transition-slow);
}

.pa-keypoint:hover {
    border-color: var(--wach-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,43,91,0.08);
}

.pa-keypoint-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--wach-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pa-keypoint-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--wach-orange);
    stroke-width: 1.5;
    fill: none;
}

.pa-keypoint h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--wach-navy);
    margin-bottom: 0.75rem;
}

.pa-keypoint p {
    font-size: 0.9rem;
    color: var(--wach-gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Practice Area: Prev/Next Nav ---------- */
.pa-prevnext {
    display: flex;
    border-top: 1px solid var(--wach-gray-200);
}

.pa-prevnext a {
    flex: 1;
    padding: 2rem;
    text-decoration: none;
    transition: background var(--transition-base);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pa-prevnext a:hover {
    background: var(--wach-gray-100);
}

.pa-prevnext a:first-child {
    border-right: 1px solid var(--wach-gray-200);
}

.pa-prevnext-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wach-gray-400);
}

.pa-prevnext-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--wach-navy);
    margin-top: 0.25rem;
}

.pa-prevnext svg {
    width: 20px;
    height: 20px;
    stroke: var(--wach-gray-400);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.pa-prevnext a:hover svg {
    stroke: var(--wach-orange);
}

/* ---------- Practice Area: Opcion C Aside ---------- */
.pa-aside-block {
    background: var(--wach-gray-100);
    padding: 2rem;
    margin-bottom: 2rem;
}

.pa-aside-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wach-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--wach-orange);
}

.pa-aside-data {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--wach-text-light);
    line-height: 2;
}

.pa-aside-data strong {
    color: var(--wach-navy);
    font-weight: 500;
}

/* ---------- Practice Area: Quote Block ---------- */
.pa-quote {
    background: var(--wach-gray-100);
    padding: 4rem 0;
    margin: 3rem 0;
}

.pa-quote blockquote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--wach-navy);
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    text-align: center;
}

.pa-quote cite {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wach-orange);
    margin-top: 1.5rem;
}

/* ---------- Team Cards (compact for interior) ---------- */
.pa-team-card {
    text-align: center;
    transition: all var(--transition-base);
}

.pa-team-card:hover {
    transform: translateY(-2px);
}

.pa-team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(100%);
    transition: filter var(--transition-slow);
    margin-bottom: 1rem;
}

.pa-team-card:hover .pa-team-photo {
    filter: grayscale(0%);
}

.pa-team-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wach-navy);
    margin-bottom: 0.15rem;
}

.pa-team-role {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wach-orange);
}

/* Compact ficha (Opcion C) */
.pa-team-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--wach-gray-200);
    transition: all var(--transition-base);
}

.pa-team-compact:hover {
    padding-left: 0.5rem;
}

.pa-team-compact img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
}

.pa-team-compact .name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wach-navy);
}

.pa-team-compact .role {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wach-gray-500);
}

.pa-team-compact a {
    margin-left: auto;
    color: var(--wach-gray-400);
    transition: color var(--transition-base);
}

.pa-team-compact:hover a {
    color: var(--wach-orange);
}

/* ---------- Insights: Filter Tabs ---------- */
.insights-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.insights-tab {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wach-gray-500);
    background: none;
    border: 1px solid var(--wach-gray-200);
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.insights-tab:hover {
    border-color: var(--wach-navy);
    color: var(--wach-navy);
}

.insights-tab.active {
    background: var(--wach-navy);
    border-color: var(--wach-navy);
    color: #fff;
}

/* Pills variant (Opcion B) */
.insights-pill {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wach-gray-500);
    background: none;
    border: 1px solid var(--wach-gray-200);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.insights-pill:hover {
    border-color: var(--wach-orange);
    color: var(--wach-orange);
}

.insights-pill.active {
    background: var(--wach-orange);
    border-color: var(--wach-orange);
    color: #fff;
}

/* ---------- Insights: Article Cards ---------- */
.insight-card {
    background: var(--wach-white);
    height: 100%;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(27,43,91,0.1);
}

.insight-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.insight-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(27,43,91,0);
    transition: background var(--transition-base);
}

.insight-card:hover .insight-card-img::after {
    background: rgba(27,43,91,0.1);
}

.insight-card-body {
    padding: 1.75rem;
}

.insight-card-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wach-orange);
}

.insight-card-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--wach-gray-400);
    margin-left: 0.75rem;
}

.insight-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--wach-navy);
    line-height: 1.4;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.insight-card-excerpt {
    font-size: 0.9rem;
    color: var(--wach-gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Featured card (2 cols wide) */
.insight-card-featured .insight-card-img {
    height: 280px;
}

.insight-card-featured .insight-card-title {
    font-size: 1.35rem;
}

/* ---------- Insights: List Row (Opcion B) ---------- */
.insight-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--wach-gray-200);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.insight-row:first-child {
    border-top: 1px solid var(--wach-gray-200);
}

.insight-row:hover {
    background: var(--wach-gray-100);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

.insight-row-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: opacity var(--transition-base);
}

.insight-row:hover .insight-row-thumb {
    opacity: 0.85;
}

.insight-row-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 100px;
    flex-shrink: 0;
}

.insight-row-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--wach-gray-400);
}

.insight-row-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wach-orange);
}

.insight-row-content {
    flex: 1;
}

.insight-row-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--wach-navy);
    margin-bottom: 0.25rem;
}

.insight-row-excerpt {
    font-size: 0.85rem;
    color: var(--wach-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

.insight-row-arrow {
    width: 20px;
    height: 20px;
    stroke: var(--wach-gray-300);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.insight-row:hover .insight-row-arrow {
    stroke: var(--wach-orange);
    transform: translateX(4px);
}

/* ---------- Insights: Sidebar (Opcion B) ---------- */
.insights-sidebar {
    position: sticky;
    top: 100px;
}

.insights-sidebar-block {
    margin-bottom: 2.5rem;
}

.insights-sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wach-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--wach-orange);
}

.insights-sidebar-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--wach-gray-600);
    text-decoration: none;
    transition: color var(--transition-base);
}

.insights-sidebar-link:hover {
    color: var(--wach-orange);
}

.insights-sidebar-link.active {
    color: var(--wach-orange);
    font-weight: 600;
}

/* Popular article in sidebar */
.insights-popular {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--wach-gray-200);
    text-decoration: none;
    transition: all var(--transition-base);
}

.insights-popular:hover {
    padding-left: 0.5rem;
}

.insights-popular-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wach-navy);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.insights-popular:hover .insights-popular-title {
    color: var(--wach-orange);
}

.insights-popular-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--wach-gray-400);
}

/* ---------- Insights: Mosaic Cards (Opcion C) ---------- */
.insight-mosaic {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.insight-mosaic-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.insight-mosaic:hover .insight-mosaic-img {
    transform: scale(1.05);
}

.insight-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 29, 62, 0.9) 0%,
        rgba(17, 29, 62, 0.2) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0.85;
    transition: opacity var(--transition-base);
}

.insight-mosaic:hover .insight-mosaic-overlay {
    opacity: 1;
}

.insight-mosaic-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--wach-orange);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
}

.insight-mosaic-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.insight-mosaic-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

/* Large mosaic card */
.insight-mosaic-lg .insight-mosaic-img {
    min-height: 400px;
}

.insight-mosaic-lg .insight-mosaic-title {
    font-size: 1.4rem;
}

/* Medium mosaic card */
.insight-mosaic-md .insight-mosaic-img {
    min-height: 320px;
}

/* ---------- Pagination ---------- */
.pagination-wach {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-wach a,
.pagination-wach span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--wach-gray-500);
    transition: all var(--transition-base);
}

.pagination-wach a:hover {
    color: var(--wach-navy);
    background: var(--wach-gray-100);
}

.pagination-wach .active {
    color: #fff;
    background: var(--wach-navy);
}

/* ---------- Content Divider (Opcion C) ---------- */
.content-divider {
    width: 100%;
    height: 2px;
    background: var(--wach-orange);
    opacity: 0.3;
    margin: 3rem 0;
}

/* ---------- Responsive Interior ---------- */
@media (max-width: 991.98px) {
    .pa-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .insights-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .pa-prevnext {
        flex-direction: column;
    }

    .pa-prevnext a:first-child {
        border-right: none;
        border-bottom: 1px solid var(--wach-gray-200);
    }

    .insight-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .insight-row-thumb {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .insight-row-meta {
        min-width: 80px;
    }

    .insight-row-content {
        width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-interior {
        padding: 2rem 0 1.5rem;
    }

    .hero-interior-tall {
        min-height: 40vh;
    }

    .hero-interior-minimal {
        padding: 3rem 0 2.5rem;
    }

    .insight-mosaic-lg .insight-mosaic-img,
    .insight-mosaic-md .insight-mosaic-img {
        min-height: 250px;
    }

    .pa-team-photo {
        width: 80px;
        height: 80px;
    }

    .insight-row-thumb {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
}

/* === Article block content (lists, tables, blockquotes) === */
.article-block {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--wach-text-light);
}
.article-block ul,
.article-block ol {
    padding-left: 1.5rem;
    margin-bottom: 0;
}
.article-block li {
    margin-bottom: 0.5rem;
}
.article-block li > p {
    margin-bottom: 0.5rem;
}
.article-block blockquote {
    border-left: 3px solid var(--wach-orange);
    padding: 0.5rem 1.25rem;
    margin: 0;
    color: var(--wach-navy);
    font-style: italic;
}
.article-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.article-block table th,
.article-block table td {
    border: 1px solid rgba(27,43,91,0.15);
    padding: 0.6rem 0.8rem;
    text-align: left;
    vertical-align: top;
}
.article-block table thead th {
    background: var(--wach-navy);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}
.article-block table tbody tr:nth-child(even) {
    background: rgba(27,43,91,0.025);
}
.article-block h2,
.article-block h3,
.article-block h4 {
    font-family: var(--font-heading);
    color: var(--wach-navy);
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.article-block h2 { font-size: 1.5rem; }
.article-block h3 { font-size: 1.25rem; }
.article-block h4 { font-size: 1.1rem; }
.article-block hr {
    border: 0;
    border-top: 1px solid rgba(27,43,91,0.15);
    margin: 2rem 0;
}
/* Table wrapper for mobile scroll */
@media (max-width: 768px) {
    .article-block table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ---------- Team cards as links to perfil-showroom (sesión 12) ---------- */
.team-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-link:hover {
    color: inherit;
    transform: translateY(-3px);
}

.team-link:hover .team-card {
    box-shadow: 0 18px 40px rgba(27, 43, 91, 0.18);
}

.team-link:hover img {
    filter: brightness(1.05);
}

/* ============ LEGAL PROSE (Aviso de Privacidad / Privacy Notice) ============ */

.legal-prose h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--wach-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    border-top: 1px solid rgba(27, 43, 91, 0.15);
    padding-top: 2rem;
}

.legal-prose h2:first-of-type {
    margin-top: 1.5rem;
    border-top: none;
    padding-top: 0;
}

.legal-prose p {
    margin-bottom: 1.1rem;
}

.legal-prose ol,
.legal-prose ul {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.legal-prose ol li,
.legal-prose ul li {
    margin-bottom: 0.5rem;
}

.legal-prose dl {
    margin-bottom: 1.5rem;
}

.legal-prose dt {
    font-weight: 600;
    color: var(--wach-navy);
    margin-top: 1rem;
}

.legal-prose dd {
    margin-left: 0;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(232, 113, 43, 0.25);
}

.legal-prose a {
    color: var(--wach-orange);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.legal-prose a:hover {
    color: var(--wach-navy);
}

.legal-prose blockquote p {
    margin-bottom: 0.65rem;
}
