:root {
    --primary: #274c9b;
    --secondary: #3f9d8f;
    --accent: #f39b6d;
    --accent-soft: #ffe7da;
    --surface: #ffffff;
    --surface-soft: #f2faf8;
    --border: rgba(39, 76, 155, 0.12);
    --text: #1d2b44;
    --muted: #5f6f87;
    --success: #21a67a;
    --shadow: 0 20px 60px rgba(39, 76, 155, 0.12);
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(63, 157, 143, 0.15), transparent 28%),
        radial-gradient(circle at top right, rgba(243, 155, 109, 0.18), transparent 30%),
        linear-gradient(135deg, #f4f8ff 0%, #f9fffc 52%, #fff8f2 100%);
}

.navbar-blur {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-brand {
    letter-spacing: -0.02em;
}

.site-header-logo {
    max-height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-link-animated {
    position: relative;
    color: var(--text);
    font-weight: 600;
    padding: 0.65rem 0.8rem !important;
    transition: color 0.25s ease;
}

.nav-link-animated::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.nav-link-animated:hover,
.nav-link-animated.active {
    color: var(--primary);
}

.nav-link-animated:hover::after,
.nav-link-animated.active::after {
    transform: scaleX(1);
}

.site-main-nav .nav-link-animated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 54px;
}

.nav-link-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    line-height: 1.05;
}

.nav-link-title {
    display: block;
}

.nav-link-subtitle {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.05;
}

.nav-link-subtitle-placeholder {
    visibility: hidden;
}

.nav-link-animated:hover .nav-link-subtitle,
.nav-link-animated.active .nav-link-subtitle {
    color: var(--secondary);
}

.nav-top-btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.nav-top-btn:hover {
    transform: translateY(-2px);
}

.nav-user-chip {
    padding: 0.55rem 0.9rem !important;
    border-radius: 999px;
    background: rgba(39, 76, 155, 0.08);
    font-weight: 600;
}

.hero {
    padding: 6.5rem 0 4rem;
}

.hero .alert {
    margin-bottom: 1.5rem;
}

.hero-card,
.glass-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-slider-wrap {
    position: relative;
}

.hero-slider {
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 28px 75px rgba(39, 76, 155, 0.16);
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item,
.hero-slide {
    min-height: 620px;
}

.hero-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
        radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.12), transparent 20%),
        linear-gradient(135deg, rgba(28, 54, 116, 0.92), rgba(44, 130, 138, 0.88) 45%, rgba(243, 155, 109, 0.82));
}

.hero-slide.slide-two::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
        linear-gradient(135deg, rgba(31, 71, 134, 0.95), rgba(63, 157, 143, 0.86) 52%, rgba(243, 155, 109, 0.78));
}

.hero-slide.slide-three::before {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.14), transparent 20%),
        linear-gradient(135deg, rgba(36, 72, 134, 0.95), rgba(65, 165, 123, 0.86) 48%, rgba(243, 155, 109, 0.80));
}

.slide-backdrop {
    position: absolute;
    inset: auto -100px -120px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(2px);
}

.slide-panel {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.slide-copy {
    max-width: 690px;
    animation: fadeUp 0.8s ease;
}

.slide-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    margin-bottom: 1.3rem;
    font-size: 0.94rem;
    font-weight: 600;
}

.slide-title {
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 1.1rem;
}

.slide-text {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1.6rem;
}

.slide-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.7rem;
}

.slide-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.btn-light-soft {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: none;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.floating-note {
    position: absolute;
    z-index: 2;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    color: #fff;
    max-width: 250px;
    box-shadow: 0 18px 34px rgba(16, 27, 66, 0.15);
    animation: floatY 4.8s ease-in-out infinite;
}

.floating-note strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.floating-note span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
}

.floating-note.one {
    top: 88px;
    right: 58px;
}

.floating-note.two {
    bottom: 95px;
    right: 96px;
    animation-delay: 1.2s;
}

.stats-strip {
    margin-top: -48px;
    position: relative;
    z-index: 4;
}

.stats-panel {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    padding: 1.25rem;
    box-shadow: 0 18px 45px rgba(39, 76, 155, 0.12);
}

.mini-stat {
    padding: 1.15rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 255, 0.95), rgba(255, 249, 245, 0.95));
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mini-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(39, 76, 155, 0.12);
}

.mini-stat .number {
    display: block;
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--primary);
}

.mini-stat .label {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(63, 157, 143, 0.10);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.3rem, 4.6vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-stat {
    padding: 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 247, 252, 0.88));
    border: 1px solid var(--border);
}

.hero-stat .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-visual {
    min-height: 100%;
    padding: 2rem;
    background:
        linear-gradient(155deg, rgba(53, 92, 125, 0.95), rgba(108, 142, 173, 0.88) 52%, rgba(213, 143, 122, 0.85));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.hero-visual ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-visual li {
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 0.9rem;
}

.section-text {
    color: var(--muted);
    max-width: 760px;
}

.section-card {
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 15px 35px rgba(39, 76, 155, 0.08);
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.section-card:hover,
.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(39, 76, 155, 0.12);
}

.section-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(63, 157, 143, 0.14), rgba(243, 155, 109, 0.14));
    color: var(--primary);
    font-size: 1.2rem;
}

.content-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(39, 76, 155, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.filter-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(39, 76, 155, 0.10);
    box-shadow: 0 18px 42px rgba(39, 76, 155, 0.08);
}

.archive-wide-shell {
    width: 100%;
}

.archive-wide-shell .filter-card {
    min-height: 100%;
}

.archive-result-head {
    padding: 1.2rem 1.4rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(39, 76, 155, 0.05), rgba(63, 157, 143, 0.05));
    border: 1px solid rgba(39, 76, 155, 0.08);
}

.archive-filter-form .form-label {
    color: var(--text);
}

.filter-section-list {
    display: grid;
    gap: 0.75rem;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.filter-section-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: rgba(39, 76, 155, 0.04);
    border: 1px solid rgba(39, 76, 155, 0.08);
    cursor: pointer;
}

.filter-section-item input {
    margin: 0;
    width: 1rem;
    height: 1rem;
}

.archive-article-card .soft-chip {
    background: rgba(39, 76, 155, 0.08);
    color: var(--primary);
}

.archive-article-card-wide {
    min-height: 100%;
}

.archive-article-card-wide .h3 {
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.emsal-sidebar-card {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.emsal-tree-root + .emsal-tree-root {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(39, 76, 155, 0.10);
}

.emsal-tree-root-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.9rem;
}

.emsal-tree-root-body {
    display: grid;
    gap: 0.45rem;
}

.emsal-tree-node {
    display: grid;
    gap: 0.4rem;
}

.emsal-tree-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem;
    border-radius: 14px;
    background: rgba(39, 76, 155, 0.04);
    border: 1px solid rgba(39, 76, 155, 0.08);
    color: var(--text);
    cursor: pointer;
    line-height: 1.5;
}

.emsal-tree-label input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.emsal-tree-label.has-children {
    font-weight: 700;
}

.emsal-tree-children {
    margin-left: 1rem;
    padding-left: 0.85rem;
    border-left: 1px dashed rgba(39, 76, 155, 0.14);
    display: grid;
    gap: 0.4rem;
}

.emsal-selected-box {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(39, 76, 155, 0.05), rgba(63, 157, 143, 0.05));
    border: 1px solid rgba(39, 76, 155, 0.08);
}

.emsal-selected-title,
.emsal-search-block-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.emsal-selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.emsal-note {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(243, 155, 109, 0.10);
    border: 1px solid rgba(243, 155, 109, 0.18);
    color: var(--text);
}

.emsal-result-card .soft-chip {
    background: rgba(39, 76, 155, 0.08);
    color: var(--primary);
}

.emsal-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.emsal-meta-box {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(39, 76, 155, 0.04);
    border: 1px solid rgba(39, 76, 155, 0.08);
}

.emsal-meta-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.publication-card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 255, 0.95));
    border: 1px solid rgba(39, 76, 155, 0.10);
    box-shadow: 0 20px 44px rgba(39, 76, 155, 0.08);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(39, 76, 155, 0.14);
}

.journal-main-card {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95));
    border: 1px solid rgba(39, 76, 155, 0.10);
    box-shadow: 0 22px 48px rgba(39, 76, 155, 0.10);
    height: 100%;
}

.journal-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(39, 76, 155, 0.12), rgba(63, 157, 143, 0.14));
    color: var(--primary);
    font-size: 1.8rem;
}

.journal-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.journal-main-card .journal-title {
    color: var(--primary);
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
}

.journal-subtitle {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.medeni-set-box {
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(39, 76, 155, 0.06), rgba(63, 157, 143, 0.06), rgba(243, 155, 109, 0.08));
    border: 1px solid rgba(39, 76, 155, 0.10);
    box-shadow: 0 20px 44px rgba(39, 76, 155, 0.08);
}

.set-item-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    height: 100%;
    padding: 1rem 1rem 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(39, 76, 155, 0.10);
    color: var(--text);
    line-height: 1.7;
}

.set-item-card i {
    color: var(--secondary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.publication-card .title {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.publication-card .desc {
    color: var(--muted);
    line-height: 1.8;
}

.feature-line {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
}

.feature-line i {
    color: var(--accent);
    margin-top: 0.15rem;
}

.content-meta,
.footer-note {
    color: var(--muted);
    font-size: 0.95rem;
}

.label-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 122, 89, 0.12);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
}

.cta-box {
    padding: 2.2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(39, 76, 155, 0.98), rgba(63, 157, 143, 0.92), rgba(243, 155, 109, 0.84));
    background-size: 200% 200%;
    animation: ctaShift 9s ease infinite;
    color: #fff;
}

.auth-side {
    background: linear-gradient(135deg, rgba(39, 76, 155, 0.98), rgba(63, 157, 143, 0.90), rgba(243, 155, 109, 0.86));
    color: #fff;
}

.auth-side p {
    color: rgba(255, 255, 255, 0.82);
}

.form-control,
.form-select {
    border-radius: 14px;
    border-color: rgba(39, 76, 155, 0.16);
    min-height: 48px;
}

.btn {
    border-radius: 14px;
    padding: 0.8rem 1.15rem;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 12px 28px rgba(63, 157, 143, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #233f82, #348678);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: rgba(39, 76, 155, 0.24);
}

.empty-state {
    border: 1px dashed rgba(39, 76, 155, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
}

.page-header {
    padding: 6rem 0 2rem;
}

.article-body {
    line-height: 1.95;
    color: #32445a;
}

.article-body p {
    margin-bottom: 1.2rem;
}

.sticky-topbar {
    position: sticky;
    top: 90px;
}

footer {
    border-top: 1px solid rgba(39, 76, 155, 0.08);
}

.site-footer {
    background: linear-gradient(180deg, #123463 0%, #184d72 45%, #1d5f66 72%, #275f4d 100%);
    color: #eef6ff;
}

.site-footer-main {
    position: relative;
    padding: 4.5rem 0 3rem;
    overflow: hidden;
}

.site-footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
        radial-gradient(circle at 88% 22%, rgba(243, 155, 109, 0.12), transparent 24%);
    pointer-events: none;
}

.footer-block {
    position: relative;
    z-index: 1;
}

.footer-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-title {
    font-size: clamp(1.7rem, 2.7vw, 2.35rem);
    margin-bottom: 0.9rem;
}

.footer-logo-wrap {
    margin-bottom: 1rem;
}

.footer-logo-image {
    max-height: 72px;
    max-width: 240px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-text {
    color: rgba(238, 246, 255, 0.82);
    line-height: 1.9;
}

.footer-links {
    display: grid;
    gap: 0.85rem;
}

.footer-link-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(238, 246, 255, 0.86);
    line-height: 1.7;
}

.footer-link-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.footer-link-anchor {
    color: rgba(238, 246, 255, 0.86);
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-link-anchor:hover {
    color: #fff;
}

.footer-contact-list {
    display: grid;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.footer-contact-item i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    flex-shrink: 0;
}

.footer-contact-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.footer-contact-item span {
    display: block;
    color: rgba(238, 246, 255, 0.82);
    line-height: 1.65;
    word-break: break-word;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 1rem 0 1.3rem;
}

.site-footer-bottom .footer-note {
    color: rgba(238, 246, 255, 0.72);
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    z-index: 7;
    opacity: 1;
    pointer-events: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.16);
    background-size: 1.2rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.24);
}

.carousel-indicators {
    margin-bottom: 1.25rem;
}

.carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 5.75rem;
    }

    .nav-link-animated {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .site-main-nav .nav-link-animated {
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
    }

    .nav-link-stack {
        display: flex;
        align-items: flex-start;
    }

    .nav-link-subtitle-placeholder {
        display: none;
    }

    .nav-link-animated::after {
        left: 0;
        right: auto;
        width: 42px;
        transform-origin: left center;
    }

    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slide,
    .slide-panel {
        min-height: auto;
    }

    .slide-panel {
        padding: 2.4rem 1.25rem 5rem;
    }

    .floating-note {
        position: static;
        max-width: none;
        margin-top: 1rem;
        animation: none;
    }

    .stats-strip {
        margin-top: -18px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 14%;
    }

    .sticky-topbar {
        position: static;
    }

    .emsal-sidebar-card {
        max-height: none;
    }

    .site-footer-main {
        padding: 3.8rem 0 2.4rem;
    }
}

@media (max-width: 575.98px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .slide-actions {
        flex-direction: column;
    }

    .slide-actions .btn {
        width: 100%;
    }

    .stats-panel {
        padding: 1rem;
    }

    .emsal-meta-grid {
        grid-template-columns: 1fr;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 18%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.7rem;
        height: 2.7rem;
    }

}
