@charset "UTF-8";

/* Kâğıthane kurumsal öğrenci platformu — bağımsız sayfa teması */
:root {
    --kh-navy: #0c2744;
    --kh-navy-mid: #153a5c;
    --kh-red: #c41e3a;
    --kh-red-dark: #9e1831;
    --kh-gold: #c9a227;
    --kh-paper: #f4f7fb;
    --kh-white: #ffffff;
    --kh-text: #1c2733;
    --kh-muted: #5a6b7d;
    --kh-border: #dce4ee;
    --kh-shadow: 0 18px 50px rgba(12, 39, 68, 0.12);
    --kh-radius: 14px;
    --kh-font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.kh-site {
    margin: 0;
    font-family: var(--kh-font);
    color: var(--kh-text);
    background: var(--kh-paper);
    line-height: 1.55;
}

.kh-skip {
    position: absolute;
    left: -9999px;
}
.kh-skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--kh-white);
    border-radius: 8px;
    outline: 2px solid var(--kh-red);
}

/* Üst şerit */
.kh-topbar {
    background: var(--kh-navy);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8125rem;
}
.kh-topbar__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.45rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.kh-topbar a {
    color: inherit;
    text-decoration: none;
}
.kh-topbar a:hover {
    text-decoration: underline;
}
.kh-topbar__sep {
    opacity: 0.35;
    margin: 0 0.35rem;
}

/* Ana başlık / navigasyon */
.kh-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--kh-white);
    border-bottom: 1px solid var(--kh-border);
    box-shadow: 0 4px 24px rgba(12, 39, 68, 0.06);
}
.kh-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.kh-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--kh-navy);
}
.kh-brand img {
    height: 52px;
    width: auto;
    display: block;
}
.kh-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.kh-brand__title {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.kh-brand__tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--kh-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.kh-nav {
    display: none;
    align-items: center;
    gap: 0.15rem;
}
@media (min-width: 992px) {
    .kh-nav {
        display: flex;
    }
}
.kh-nav a {
    color: var(--kh-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
}
.kh-nav a:hover {
    background: rgba(196, 30, 58, 0.08);
    color: var(--kh-red);
}

.kh-header__actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}
@media (min-width: 992px) {
    .kh-header__actions {
        display: flex;
    }
}

.kh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}
.kh-btn--outline {
    background: transparent;
    color: var(--kh-navy);
    border: 2px solid var(--kh-navy);
}
.kh-btn--outline:hover {
    background: var(--kh-navy);
    color: var(--kh-white);
}
.kh-btn--red {
    background: linear-gradient(180deg, var(--kh-red) 0%, var(--kh-red-dark) 100%);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(196, 30, 58, 0.35);
}
.kh-btn--red:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.kh-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--kh-border);
    border-radius: 10px;
    background: var(--kh-white);
    color: var(--kh-navy);
    cursor: pointer;
}
@media (min-width: 992px) {
    .kh-nav-toggle {
        display: none;
    }
}

.kh-nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 1.25rem 1rem;
    background: var(--kh-white);
    border-bottom: 1px solid var(--kh-border);
}
.kh-nav-mobile.is-open {
    display: flex;
}
.kh-nav-mobile a {
    padding: 0.65rem 0;
    color: var(--kh-navy);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--kh-border);
}
.kh-nav-mobile a:last-child {
    border-bottom: none;
}
.kh-nav-mobile .kh-btn {
    margin-top: 0.75rem;
    justify-content: center;
}

/* Kahraman */
.kh-hero {
    position: relative;
    background: linear-gradient(165deg, #0a1f35 0%, var(--kh-navy) 38%, var(--kh-navy-mid) 62%, #173e62 100%);
    color: #fff;
    overflow: hidden;
}
.kh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 70% at 95% -5%, rgba(196, 30, 58, 0.32), transparent 52%),
                radial-gradient(ellipse 70% 55% at -5% 105%, rgba(201, 162, 39, 0.14), transparent 48%),
                radial-gradient(ellipse 50% 40% at 50% 120%, rgba(26, 80, 128, 0.45), transparent 55%);
    pointer-events: none;
}
.kh-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: linear-gradient(rgba(255, 255, 255, 0.85) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.85) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.55) 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.55) 88%, transparent 100%);
    pointer-events: none;
}

.kh-hero__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2.75rem, 6.5vw, 5rem) 1.25rem;
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}
@media (min-width: 992px) {
    .kh-hero__inner {
        grid-template-columns: 1.12fr 0.88fr;
        column-gap: clamp(2rem, 4vw, 3.5rem);
    }
}

.kh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #f5e6a8;
    margin-bottom: 1rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.14);
    border: 1px solid rgba(201, 162, 39, 0.38);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}
.kh-hero__badge i {
    opacity: 0.95;
    font-size: 0.68rem;
}

.kh-hero h1 {
    margin: 0 0 1.15rem;
    font-size: clamp(1.9rem, 4.3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.kh-hero h1 em {
    font-style: normal;
    color: #fde68a;
    text-shadow: 0 0 28px rgba(253, 230, 138, 0.22);
}

.kh-hero__lead {
    margin: 0 0 1.65rem;
    font-size: clamp(1rem, 1.35vw, 1.08rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 38rem;
    line-height: 1.68;
    text-align: start;
}

.kh-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.kh-btn--hero-primary {
    padding: 0.72rem 1.45rem;
    border-radius: 12px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.kh-btn--hero-primary:hover {
    box-shadow: 0 14px 36px rgba(196, 30, 58, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.kh-btn--hero-secondary {
    padding: 0.7rem 1.35rem;
    border-radius: 12px;
    font-size: 0.9rem;
    border-width: 2px !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.kh-btn--hero-secondary:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.kh-hero-card {
    position: relative;
    border-radius: 18px;
    padding: clamp(1.4rem, 3vw, 1.65rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 18px 48px rgba(8, 22, 38, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.kh-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.12);
}
.kh-hero-card h2 {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.98);
}
.kh-hero-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.kh-hero-card__list li {
    display: grid;
    grid-template-columns: 1.125rem minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    font-size: 0.905rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.65rem;
    text-align: start;
}
.kh-hero-card__list li:last-child {
    margin-bottom: 0;
}
.kh-hero-card__list li i {
    margin-top: 0.22rem;
    color: var(--kh-gold);
    font-size: 0.82rem;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.35));
}
.kh-hero-card__txt {
    min-width: 0;
}

.kh-wave {
    display: block;
    width: 100%;
    height: 56px;
}
.kh-wave path {
    fill: var(--kh-paper);
}

/* Bölüm ortak */
.kh-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
}

.kh-section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.25rem;
}
.kh-section__eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kh-red);
    margin-bottom: 0.4rem;
}
.kh-section__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--kh-navy);
    letter-spacing: -0.02em;
}
.kh-section__lead {
    margin: 0;
    color: var(--kh-muted);
    font-size: 1.02rem;
}

/* Başkan mesajı */
.kh-mayor {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}
@media (min-width: 992px) {
    .kh-mayor {
        grid-template-columns: 1fr minmax(260px, 300px);
    }
}

.kh-quote {
    background: var(--kh-white);
    border-radius: var(--kh-radius);
    padding: 2rem;
    border: 1px solid var(--kh-border);
    box-shadow: var(--kh-shadow);
}
.kh-quote .kh-msg {
    font-size: 1.02rem;
    line-height: 1.75;
}
.kh-quote .kh-msg p.lead-in {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--kh-navy);
}
.kh-quote .kh-msg p {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    color: var(--kh-text);
}
.kh-quote .kh-msg p:last-child {
    margin-bottom: 0;
}

.kh-mayor-aside {
    background: linear-gradient(180deg, var(--kh-white), #f0f4fa);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius);
    padding: 1.75rem 1.35rem;
    text-align: center;
    box-shadow: var(--kh-shadow);
}
.kh-mayor-photo {
    margin: 0 0 1.25rem;
    padding: 0;
    border-radius: var(--kh-radius);
    overflow: hidden;
    border: 3px solid rgba(201, 162, 39, 0.55);
    box-shadow: 0 12px 36px rgba(12, 39, 68, 0.18);
    background: var(--kh-navy);
}
.kh-mayor-photo img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.kh-mayor-aside__sig {
    font-weight: 800;
    font-size: 1rem;
    color: var(--kh-navy);
    line-height: 1.45;
}
.kh-role {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--kh-red);
}

/* Özellik ızgarası */
.kh-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .kh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1100px) {
    .kh-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.kh-card {
    background: var(--kh-white);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius);
    padding: 1.35rem 1.25rem;
    height: 100%;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.kh-card:hover {
    border-color: rgba(196, 30, 58, 0.28);
    box-shadow: var(--kh-shadow);
}
.kh-card__ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(12, 39, 68, 0.08));
    color: var(--kh-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.kh-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--kh-navy);
}
.kh-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--kh-muted);
}

/* YKS / LGS paket kartları */
.kh-pkg-grid {
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
}
@media (min-width: 900px) {
    .kh-pkg-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.kh-pkg {
    background: var(--kh-white);
    border: 1px solid var(--kh-border);
    border-radius: var(--kh-radius);
    padding: 1.65rem 1.45rem 1.45rem;
    box-shadow: 0 12px 36px rgba(12, 39, 68, 0.08);
}
.kh-pkg__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}
.kh-pkg__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.28rem 0.65rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(180deg, var(--kh-red) 0%, var(--kh-red-dark) 100%);
    color: #fff;
}
.kh-pkg__badge--teal {
    background: linear-gradient(180deg, #0f766e 0%, #0d9488 100%);
}
.kh-pkg h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--kh-navy);
    letter-spacing: -0.02em;
}
.kh-pkg__lead {
    margin: 0 0 1rem;
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--kh-text);
}
.kh-pkg__list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--kh-muted);
}
.kh-pkg__list li {
    margin-bottom: 0.5rem;
}
.kh-pkg__list li:last-child {
    margin-bottom: 0;
}
.kh-pkg__hint {
    margin: 1.15rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--kh-border);
    font-size: 0.9rem;
}
.kh-pkg__hint a {
    font-weight: 700;
    color: var(--kh-red);
    text-decoration: none;
}
.kh-pkg__hint a:hover {
    text-decoration: underline;
}
.kh-pkg__hint i {
    margin-right: 0.35rem;
    opacity: 0.9;
}

/* Süreç şeridi */
.kh-strip {
    background: var(--kh-white);
    border-top: 1px solid var(--kh-border);
    border-bottom: 1px solid var(--kh-border);
}
.kh-steps {
    display: grid;
    gap: 1.25rem;
    counter-reset: khstep;
}
@media (min-width: 768px) {
    .kh-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}
.kh-step {
    position: relative;
    padding: 1rem 0 0;
}
.kh-step::before {
    counter-increment: khstep;
    content: counter(khstep);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kh-red);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
}
.kh-step strong {
    display: block;
    color: var(--kh-navy);
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}
.kh-step span {
    font-size: 0.875rem;
    color: var(--kh-muted);
}

/* Rakamlar */
.kh-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .kh-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}
.kh-stat {
    background: var(--kh-white);
    border-radius: var(--kh-radius);
    border: 1px solid var(--kh-border);
    padding: 1.25rem;
    text-align: center;
}
.kh-stat__num {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--kh-red);
}
.kh-stat__lbl {
    font-size: 0.82rem;
    color: var(--kh-muted);
    margin-top: 0.25rem;
}

/* CTA */
.kh-cta {
    background: linear-gradient(135deg, var(--kh-navy) 0%, #173556 100%);
    color: #fff;
    text-align: center;
    padding: clamp(2.75rem, 6vw, 4rem) 1.25rem;
    position: relative;
    overflow: hidden;
}
.kh-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 240px at 50% 0%, rgba(196, 30, 58, 0.35), transparent 65%);
    pointer-events: none;
}
.kh-cta__inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}
.kh-cta h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
}
.kh-cta p {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.88);
}
.kh-cta .kh-btn--outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}
.kh-cta .kh-btn--outline:hover {
    background: #fff;
    color: var(--kh-navy);
}

/* Alt bilgi */
.kh-footer {
    background: var(--kh-navy);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
}
.kh-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1.5rem;
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .kh-footer__inner {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}
.kh-footer h3 {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--kh-gold);
}
.kh-footer a {
    color: rgba(255, 255, 255, 0.88);
}
.kh-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.kh-footer li {
    margin-bottom: 0.4rem;
}
.kh-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

/* Üyelik başvuru formu (uyelikbasvuru.aspx) */
.kh-form-grid {
    display: grid;
    gap: 1rem 1.25rem;
}
@media (min-width: 640px) {
    .kh-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.kh-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.kh-field--full {
    grid-column: 1 / -1;
}
.kh-field label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--kh-navy);
}
.kh-input,
.kh-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--kh-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--kh-text);
    background: var(--kh-white);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.kh-input:focus,
.kh-select:focus {
    outline: none;
    border-color: rgba(196, 30, 58, 0.45);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}
.kh-select {
    cursor: pointer;
    appearance: auto;
}
.kh-alert {
    padding: 0.85rem 1rem;
    border-radius: var(--kh-radius);
    font-size: 0.92rem;
    line-height: 1.5;
}
.kh-alert--danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.kh-alert--ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.kh-apply-info-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--kh-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}
.kh-apply-info-list li {
    margin-bottom: 0.35rem;
}
