/* =================================================================
   ms-home.css — Masters Society public landing
   ================================================================= */

/* ── Reset & base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: #09090c;
    color: #f0ede7;
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* ── Variables ───────────────────────────────────────────────────── */
:root {
    --gold:       #c9a84c;
    --gold-light: #e5cf96;
    --gold-dark:  #8a6f2e;
    --bg:         #09090c;
    --bg1:        #0d0d10;
    --bg3:        #161619;
    --t1:         #f0ede7;
    --t2:         #a09b93;
    --t3:         #5d5952;
    --t4:         #302d29;
}

/* ── Utility ─────────────────────────────────────────────────────── */
.ms-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ms-gold-line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.35;
    margin: 0 auto 1.75rem;
}
.ms-tag {
    display: block;
    font-size: 0.575rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}
.ms-section-title {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.015em;
    color: var(--t1);
    line-height: 1.3;
    margin-bottom: 0.875rem;
}
.ms-section-subtitle {
    font-size: 0.875rem;
    color: var(--t3);
    line-height: 1.75;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.ms-btn-primary {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: var(--gold);
    color: #09090c;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.35s cubic-bezier(0.22,1,0.36,1),
                transform 0.35s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.35s cubic-bezier(0.22,1,0.36,1);
}
.ms-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(201,168,76,0.22), 0 0 0 1px rgba(201,168,76,0.15);
}
.ms-btn-outline {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border: 1px solid rgba(201,168,76,0.45);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.35s cubic-bezier(0.22,1,0.36,1),
                border-color 0.35s cubic-bezier(0.22,1,0.36,1),
                transform 0.35s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.35s cubic-bezier(0.22,1,0.36,1);
}
.ms-btn-outline:hover {
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.75);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,168,76,0.12);
}

/* ── Navbar ──────────────────────────────────────────────────────── */
.ms-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.625rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.35s, padding 0.35s, border-color 0.35s;
    border-bottom: 1px solid transparent;
}
.ms-nav.scrolled {
    background: rgba(9,9,12,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.125rem 2rem;
    border-color: rgba(201,168,76,0.07);
}
.ms-nav-logo { display: flex; align-items: center; text-decoration: none; }
.ms-nav-logo img { height: 24px; width: auto; display: block; opacity: 0.9; transition: opacity 0.3s ease; }
.ms-nav-logo:hover img { opacity: 1; }
.ms-nav-logo-fallback {
    font-size: 0.575rem;
    letter-spacing: 0.38em;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
}
.ms-nav-cta {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: background 0.2s, border-color 0.2s;
}
.ms-nav-cta:hover {
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.65);
}

/* ── Hero ────────────────────────────────────────────────────────── */
.ms-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.ms-hero-bg {
    position: absolute;
    inset: 0;
    /* Default gradient — replace with: background-image: url('/images/home-hero.jpg') */
    background: linear-gradient(140deg, #14120f 0%, #09090c 45%, #0e0d0b 100%);
    background-size: cover;
    background-position: center;
}
.ms-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9,9,12,0.60) 0%,
        rgba(9,9,12,0.65) 50%,
        rgba(9,9,12,0.92) 100%
    );
}
.ms-hero-logo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
}
.ms-hero-logo {
    height: 220px;
    width: auto;
    display: block;
    opacity: 0.9;
    filter: drop-shadow(0 0 22px rgba(201,168,76,0.22));
}
.ms-hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem 4rem;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.ms-hero-pretitle {
    font-size: 0.575rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.875rem;
    padding-left: 0.38em;
}
.ms-hero-title {
    font-size: clamp(2.25rem, 6.5vw, 4.25rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    color: var(--t1);
    line-height: 1.1;
    margin-bottom: 1.375rem;
}
.ms-hero-title strong { font-weight: 600; }
.ms-hero-subtitle {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--t2);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2.75rem;
}
.ms-hero-scroll {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.ms-hero-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.55), transparent);
    animation: ms-scroll 2s ease-in-out infinite;
}
@keyframes ms-scroll {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30%  { opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: top; }
    61%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.ms-hero-scroll-label {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--t4);
}

/* ── About ───────────────────────────────────────────────────────── */
.ms-about {
    padding: 10rem 0;
    background: var(--bg);
    text-align: center;
}
.ms-about-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ms-about-title {
    font-size: clamp(1.5rem, 3.5vw, 2.375rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--t1);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.ms-about-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.ms-about-text,
.ms-about-text p {
    font-size: 0.9375rem;
    color: var(--t2);
    line-height: 1.9;
    font-weight: 300;
}
.ms-about-text p + p { margin-top: 1.1em; }

/* ── Experiences ─────────────────────────────────────────────────── */
.ms-experiences {
    padding: 8.5rem 0;
    background: var(--bg1);
}
.ms-experiences-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 2rem;
}
.ms-experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
    max-width: 1200px;
    margin: 0 auto;
}
.ms-exp-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg3);
    cursor: default;
    transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
}
.ms-exp-card:hover {
    box-shadow: inset 0 0 0 1px rgba(201,168,76,0.22);
}
.ms-exp-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1200ms cubic-bezier(0.22,1,0.36,1),
                filter 1200ms cubic-bezier(0.22,1,0.36,1);
}
.ms-exp-card.ph-1 { background: linear-gradient(155deg, #1c1710 0%, #0d0a07 100%); }
.ms-exp-card.ph-2 { background: linear-gradient(155deg, #111418 0%, #0b0d11 100%); }
.ms-exp-card.ph-3 { background: linear-gradient(155deg, #17121c 0%, #0f0b13 100%); }
.ms-exp-card.ph-4 { background: linear-gradient(155deg, #1a1510 0%, #110e09 100%); }
.ms-exp-card.ph-1 .ms-exp-card-img { object-position: center 35%; }
.ms-exp-card.ph-2 .ms-exp-card-img { object-position: center 25%; }
.ms-exp-card.ph-3 .ms-exp-card-img { object-position: center 30%; }
.ms-exp-card.ph-4 .ms-exp-card-img { object-position: center 30%; }
.ms-exp-card:hover .ms-exp-card-img {
    transform: scale(1.04);
    filter: brightness(1.05) sepia(0.12) saturate(1.3);
}
.ms-exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,9,12,0.88) 0%, rgba(9,9,12,0.35) 55%, rgba(9,9,12,0.08) 100%);
}
.ms-exp-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.625rem 1.375rem;
}
.ms-exp-card-tag {
    font-size: 0.525rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.ms-exp-card-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--t1);
    line-height: 1.3;
    margin-bottom: 0.4rem;
}
.ms-exp-card-desc {
    font-size: 0.75rem;
    color: var(--t3);
    line-height: 1.55;
}

/* ── Diferenciador ───────────────────────────────────────────────── */
.ms-diferenciador {
    padding: 11rem 0;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ms-diferenciador::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.035) 0%, transparent 70%);
    pointer-events: none;
}
.ms-diferenciador-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ms-diferenciador-quote {
    font-size: clamp(1.375rem, 3.5vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.018em;
    color: var(--t1);
    line-height: 1.45;
    margin-bottom: 2rem;
    font-style: normal;
}
.ms-diferenciador-quote em {
    font-style: italic;
    color: var(--gold-light);
}
.ms-diferenciador-sub {
    font-size: 0.875rem;
    color: var(--t3);
    line-height: 1.8;
    max-width: 440px;
    margin: 0 auto;
}

/* ── Acceso ──────────────────────────────────────────────────────── */
.ms-acceso {
    padding: 9.5rem 0;
    background: var(--bg1);
}
.ms-acceso-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.ms-acceso-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.375rem;
    margin-top: 2rem;
}
.ms-acceso-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.ms-acceso-bullet {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.28);
    background: rgba(201,168,76,0.04);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.ms-acceso-bullet svg {
    width: 9px; height: 9px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ms-acceso-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 0.2rem;
}
.ms-acceso-item-desc {
    font-size: 0.8rem;
    color: var(--t3);
    line-height: 1.6;
}
.ms-acceso-card {
    background: var(--bg3);
    border: 1px solid rgba(201,168,76,0.09);
    border-radius: 6px;
    padding: 2.75rem 2.25rem;
    text-align: center;
}
.ms-acceso-card-tag {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}
.ms-acceso-card-title {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--t1);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}
.ms-acceso-card-text {
    font-size: 0.8125rem;
    color: var(--t3);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* ── CTA final ───────────────────────────────────────────────────── */
.ms-cta {
    padding: 9rem 0;
    background: var(--bg);
    text-align: center;
    position: relative;
}
.ms-cta::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.18), transparent);
}
.ms-cta-inner {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}
.ms-cta-title {
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--t1);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.ms-cta-sub {
    font-size: 0.875rem;
    color: var(--t3);
    line-height: 1.75;
    margin-bottom: 2.75rem;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.ms-home-footer {
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.ms-home-footer p {
    font-size: 0.575rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--t4);
}

/* ── Ecosistema ────────────────────────────────────────────────── */
.ms-ecosistema {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(140deg, #100e0b 0%, #09090c 50%, #0f0d0a 100%);
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ms-ecosistema-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.55));
}
.ms-ecosistema-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    transform: translateY(-6%);
}
.ms-ecosistema-text {
    font-size: clamp(1.175rem, 2.5vw, 1.4375rem);
    color: var(--t2);
    line-height: 2.1;
    font-weight: 300;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Visual break ───────────────────────────────────────────────── */
.ms-visual-break {
    position: relative;
    height: 70vh;
    min-height: 480px;
    background: linear-gradient(140deg, #100e0b 0%, #09090c 50%, #0f0d0a 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ms-visual-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9,9,12,0.72) 0%,
        rgba(9,9,12,0.64) 45%,
        rgba(9,9,12,0.80) 100%
    );
}
.ms-visual-break-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
}
.ms-visual-break-title {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.035em;
    color: var(--t1);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.ms-visual-break-sub {
    font-size: clamp(0.9375rem, 2.5vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    font-style: italic;
}

.ms-visual-break::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(9,9,12,1));
    pointer-events: none;
    z-index: 2;
}

/* ── Filtro premium ─────────────────────────────────────────────── */
.ms-filtro {
    padding: 8.5rem 0;
    background: var(--bg1);
    text-align: center;
}
.ms-filtro-inner {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ms-filtro-title {
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--t1);
    line-height: 1.25;
    margin-bottom: 1.375rem;
}
.ms-filtro-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.ms-filtro-text {
    font-size: 0.875rem;
    color: var(--t2);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.ms-filtro-list {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}
.ms-filtro-list li {
    font-size: 0.8125rem;
    color: var(--t2);
    padding-left: 1.125rem;
    position: relative;
    line-height: 1.5;
}
.ms-filtro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.625em;
    width: 5px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

/* ── Hero entry animations ───────────────────────────────────────── */
@keyframes ms-hero-logo-in {
    from { opacity: 0; transform: scale(0.94); filter: blur(6px); }
    to   { opacity: 0.9; transform: scale(1);  filter: blur(0);   }
}
@keyframes ms-hero-text-in {
    from { opacity: 0; transform: translateY(22px); filter: blur(5px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
@keyframes ms-hero-scroll-in {
    from { opacity: 0; transform: translateX(-50%) translateY(22px); filter: blur(5px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0);    filter: blur(0);   }
}
.ms-hero-logo {
    animation: ms-hero-logo-in 1100ms cubic-bezier(0.22,1,0.36,1) both;
}
.ms-hero-pretitle {
    animation: ms-hero-text-in 750ms cubic-bezier(0.22,1,0.36,1) 380ms both;
}
.ms-hero-title {
    animation: ms-hero-text-in 750ms cubic-bezier(0.22,1,0.36,1) 560ms both;
}
.ms-hero-subtitle {
    animation: ms-hero-text-in 750ms cubic-bezier(0.22,1,0.36,1) 720ms both;
}
.ms-hero-content .ms-btn-primary {
    animation: ms-hero-text-in 750ms cubic-bezier(0.22,1,0.36,1) 900ms both;
}
.ms-hero-scroll {
    animation: ms-hero-scroll-in 750ms cubic-bezier(0.22,1,0.36,1) 1100ms both;
}

/* ── Scroll animations ─────────────────────────────────────────────── */
[data-anim] {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
    transition: opacity 800ms cubic-bezier(0.22,1,0.36,1),
                transform 800ms cubic-bezier(0.22,1,0.36,1),
                filter 800ms cubic-bezier(0.22,1,0.36,1);
}
[data-anim].visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
}
[data-anim][data-delay="1"] { transition-delay: 0.12s; }
[data-anim][data-delay="2"] { transition-delay: 0.24s; }
[data-anim][data-delay="3"] { transition-delay: 0.36s; }
[data-anim][data-delay="4"] { transition-delay: 0.48s; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .ms-experiences-grid { grid-template-columns: repeat(2, 1fr); }
    .ms-acceso-inner { grid-template-columns: 1fr; gap: 3rem; }
    .ms-hero-logo { height: 150px; }
    .ms-hero-bg { background-position: center 30%; }
    .ms-visual-break { min-height: 55vh; }
    .ms-ecosistema { min-height: 60vh; }
}
@media (max-width: 640px) {
    .ms-nav { padding: 1.25rem 1.25rem; }
    .ms-nav.scrolled { padding: 0.875rem 1.25rem; }
    .ms-hero { min-height: 85vh; }
    .ms-hero-content { padding: 5rem 1.5rem 3.5rem; }
    .ms-hero-bg { background-position: 70% center; }
    .ms-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.70) 0%,
            rgba(0,0,0,0.60) 40%,
            rgba(0,0,0,0.85) 100%
        );
    }
    .ms-hero-logo { height: 105px; max-width: 160px; }
    .ms-hero-logo-wrap { margin-bottom: 1rem; }
    .ms-experiences-grid { grid-template-columns: 1fr; }
    .ms-about { padding: 6.5rem 0; }
    .ms-diferenciador { padding: 7rem 0; }
    .ms-acceso { padding: 6.5rem 0; }
    .ms-filtro { padding: 5.5rem 0; }
    .ms-cta { padding: 7rem 0; }
    .ms-experiences { padding: 6rem 0; }
    .ms-visual-break { min-height: 60vh; background-position: center center; }
    .ms-visual-break-title { letter-spacing: -0.025em; }
    .ms-ecosistema { min-height: 60vh; background-position: 65% center; }
    .ms-ecosistema-inner { transform: translateY(-2%); }
    .ms-ecosistema-text { font-size: clamp(1rem, 4.5vw, 1.175rem); line-height: 1.9; }
    .ms-btn-primary,
    .ms-btn-outline { padding: 0.8rem 2rem; }
}
