/* Richmond CTA Buttons — Elementor Widget */

/* Base structural styles for the row (dynamic styles output inline per widget instance) */
.richmond-cta-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.richmond-cta-btn {
    flex: 1 1 0;
    min-width: 120px;
    display: flex;
    align-items: stretch;
}

.richmond-cta-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.4;
}

.richmond-cta-label {
    position: relative;
    display: inline-block;
}

/* ── Single Button ── */

.richmond-single-wrap {
    display: block;
}

.richmond-single-btn {
    display: inline-block;
    padding: 8px 0;
}

.richmond-single-btn a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #2c1f14;
    font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.4;
}

.richmond-single-btn a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -3px;
    height: 1px;
    background: #b8922a;
    transition: left 0.3s ease, right 0.3s ease;
}

.richmond-single-btn a:hover::after {
    left: 0;
    right: 0;
}
