:root {
    --blue: #004b8d;
    --blue2: #0072bc;
    --cyan: #00aeef;
    --navy: #00345f;
    --yellow: #ffd233;
    --soft: #eff8ff;
    --text: #0b2f4f;
    --radius: 22px;
    --shadow: 0 20px 55px rgba(0, 54, 98, .14);
    --shadow2: 0 30px 75px rgba(0, 54, 98, .22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

::selection {
    background: var(--cyan);
    color: white;
}

/* Topbar / navbar */

.topbar {
    background: linear-gradient(90deg, var(--navy), var(--blue));
    color: #d9f4ff;
}

.topbar i {
    color: #7de3ff;
}

.navbar {
    transition: .28s ease;
}

.navbar.scrolled {
    box-shadow: 0 16px 34px rgba(0, 52, 95, .13) !important;
}

.navbar-brand img {
    height: 58px;
    transition: .25s;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.navbar .nav-link {
    font-weight: 900;
    text-transform: uppercase;
    font-size: .78rem;
    color: #07375f;
    padding: .8rem .65rem !important;
    position: relative;
}

.navbar .nav-link:after {
    content: '';
    position: absolute;
    left: .65rem;
    right: .65rem;
    bottom: .45rem;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue2));
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--cyan);
}

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

/* Gombok */

.btn {
    transition: .25s ease;
    box-shadow: none !important;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    border: 0;
    font-weight: 900;
}

.btn-info {
    background: linear-gradient(135deg, #00aeef, #0072bc);
    border: 0;
    color: #fff;
    font-weight: 900;
}

.btn-warning {
    background: var(--yellow);
    border: 0;
    color: #07375f;
    font-weight: 950;
}

.btn-outline-light {
    font-weight: 800;
}

/* Hero */

.hero {
    position: relative;
    background-size: cover;
    background-position: center 42%;
    overflow: hidden;
    isolation: isolate;
}

.hero:before {
    content: '';
    position: absolute;
    inset: auto -10% -120px -10%;
    height: 210px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    z-index: 3;
}

.min-vh-hero {
    min-height: 620px;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 26, 60, .92) 0%,
            rgba(0, 70, 120, .70) 37%,
            rgba(0, 132, 190, .18) 70%,
            rgba(0, 0, 0, .02) 100%);
    z-index: 1;
}

.hero-waterline {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 65% 8%, rgba(255, 255, 255, .5), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, .12), transparent 42%);
    mix-blend-mode: screen;
    opacity: .85;
    animation: waterGlow 7s ease-in-out infinite;
    z-index: 2;
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .55) 1px, transparent 1.7px),
        radial-gradient(circle, rgba(125, 227, 255, .45) 1px, transparent 1.8px);
    background-size: 90px 90px, 140px 140px;
    background-position: 15px 30px, 80px 10px;
    animation: bubbles 18s linear infinite;
    opacity: .35;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-weight: 950;
    color: #7de3ff;
    margin-bottom: 16px;
}

.eyebrow:before {
    content: '';
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--yellow);
}

.hero h1 {
    font-size: 26pt;
    font-weight: 950;
    line-height: .9;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 12px 35px rgba(0, 0, 0, .28);
    max-width: 780px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 800;
    color: #fff;
    margin: 22px 0 28px;
}

.hero strong {
    color: var(--yellow);
}

.hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-stat {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    padding: 14px 18px;
    color: white;
    min-width: 128px;
}

.hero-stat strong {
    display: block;
    color: white;
    font-size: 1.35rem;
}

.hero-stat span {
    font-size: .78rem;
    color: #c9f5ff;
    font-weight: 700;
}

.float-badge {
    position: absolute;
    right: 5%;
    bottom: 20%;
    z-index: 4;
    background: white;
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: var(--shadow2);
    animation: float 4.8s ease-in-out infinite;
}

.float-badge i {
    font-size: 1.7rem;
    color: var(--cyan);
}

.float-badge strong {
    display: block;
    color: var(--blue);
    font-weight: 950;
}

.float-badge span {
    font-size: .82rem;
    color: #56768d;
}

/* Szekciók */

.section-pad {
    padding: 12px 0;
}

.section-title {
    margin-bottom: 28px;
}

.section-title h2 {
    font-size: 1.55rem;
    text-transform: uppercase;
    font-weight: 950;
    color: var(--blue);
    position: relative;
}

.section-title h2:after {
    content: ' ≋';
    color: var(--cyan);
}

.link-arrow {
    font-weight: 900;
    text-decoration: none;
    color: var(--blue2);
}

/* Reveal animáció */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal:nth-child(2) {
    transition-delay: .08s;
}

.reveal:nth-child(3) {
    transition-delay: .16s;
}

.reveal:nth-child(4) {
    transition-delay: .24s;
}

/* Hírek */

.news-card {
    position: relative;
    display: block;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    transition: .32s cubic-bezier(.2, .8, .2, 1);
}

.news-card:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(0, 174, 239, .11), transparent 45%);
    opacity: 0;
    transition: .25s;
    z-index: 1;
    pointer-events: none;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow2);
}

.news-card:hover:before {
    opacity: 1;
}

.news-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.news-card:hover img {
    transform: scale(1.08);
}

.news-card h3 {
    font-size: 1.08rem;
    font-weight: 950;
    color: var(--navy);
}

.news-card p {
    font-size: .9rem;
    color: #496b83;
}

.news-card a {
    text-decoration: none;
    font-weight: 900;
    color: var(--blue2);
}

.date-badge {
    position: absolute;
    top: 152px;
    left: 16px;
    background: #e4f8ff;
    color: var(--blue);
    font-size: .75rem;
    font-weight: 950;
    padding: .38rem .65rem;
    border-radius: 10px 10px 0 0;
    z-index: 2;
}

/* Dobozok */

.program-box,
.result-card,
.quick-box {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
    height: 100%;
    border: 1px solid rgba(0, 174, 239, .08);
}

.program-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e6f0f7;
    transition: .2s;
}

.program-item:hover {
    transform: translateX(6px);
}

.program-item i {
    font-size: 1.7rem;
    color: var(--cyan);
}

.program-item strong,
.program-item span,
.program-item small {
    display: block;
}

.program-item strong {
    color: var(--blue);
    font-weight: 950;
}

.program-item span {
    color: #607b8f;
    font-size: .86rem;
}

/* Sport tile / tábor banner */

.sport-tile,
.camp-banner {
    min-height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    padding: 42px;
    display: flex;
    align-items: end;
    box-shadow: var(--shadow);
    transition: .35s;
}

.sport-tile:hover,
.camp-banner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
}

.sport-tile:before,
.camp-banner:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 31, 69, .86), rgba(0, 130, 190, .1));
}

.sport-tile:after,
.camp-banner:after {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: rotate(22deg) translateX(-70%);
    transition: .8s;
}

.sport-tile:hover:after,
.camp-banner:hover:after {
    transform: rotate(22deg) translateX(70%);
}

.sport-tile>*,
.camp-banner>* {
    position: relative;
    z-index: 2;
}

.sport-tile h2,
.camp-banner h2 {
    font-weight: 950;
    text-transform: uppercase;
}

.camp-banner h2 {
    font-size: 2.4rem;
}

.camp-banner span {
    color: var(--yellow);
}

/* Eredmények / quick box */

.score-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
    margin: 20px 0;
}

.score-row strong {
    font-size: 2.4rem;
    color: var(--blue);
    font-weight: 950;
}

.score-row span {
    font-weight: 900;
}

.quick-box h2,
.result-card h2 {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 950;
    color: var(--blue);
}

.quick-box a {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 900;
    border-bottom: 1px solid #e6f0f7;
    padding: 14px 0;
    transition: .2s;
}

.quick-box a:hover {
    color: var(--cyan);
    transform: translateX(5px);
}

.quick-box i {
    color: var(--cyan);
    font-size: 1.2rem;
}

.bg-light-blue {
    background: linear-gradient(180deg, #f4fbff, #fff);
}

/* Edzők */

.coach-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    transition: .3s;
}

.coach-card:hover {
    transform: translateY(-8px);
}

.coach-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: .45s;
}

.coach-card:hover img {
    transform: scale(1.07);
}

.coach-card h3 {
    font-size: 1rem;
    font-weight: 950;
    margin: 16px 12px 2px;
}

.coach-card span {
    display: block;
    color: #5f7b91;
    font-size: .82rem;
    padding: 0 10px 18px;
}

/* Galéria */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 54, 98, .12);
    transition: .28s;
}

.gallery-grid img:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: var(--shadow);
}

/* CTA */

.cta-section {
    padding: 72px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(125, 227, 255, .35), transparent 28%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section:after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    border: 35px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    animation: pulseRing 5s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 950;
}

/* Footer */

.footer {
    background: #00345f;
    color: #cdeeff;
    padding: 60px 0 24px;
}

.footer-logo {
    height: 70px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
}

.footer a {
    display: block;
    color: #cdeeff;
    text-decoration: none;
    margin: .35rem 0;
}

.footer a:hover {
    color: white;
}

.footer hr {
    border-color: rgba(255, 255, 255, .18);
}

/* Animációk */

@keyframes waterGlow {

    0%,
    100% {
        opacity: .65;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(24px);
    }
}

@keyframes bubbles {
    from {
        background-position: 15px 220px, 80px 180px;
    }

    to {
        background-position: 15px -220px, 80px -260px;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(.9);
        opacity: .7;
    }

    50% {
        transform: scale(1.08);
        opacity: .25;
    }
}

/* Reszponzív */

@media (max-width: 1199px) {
    .float-badge {
        display: none;
    }
}

@media (max-width: 991px) {
    .min-vh-hero {
        min-height: 590px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero:before {
        height: 120px;
        bottom: -80px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 48px;
    }

    .section-pad {
        padding: 52px 0;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .min-vh-hero {
        min-height: 560px;
    }

    .sport-tile,
    .camp-banner {
        padding: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        display: none;
    }
}

/* Hírek + Programok egyforma magasság */

.news-programs-row {
    align-items: stretch;
}

.news-programs-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.news-programs-row .news-card,
.news-programs-row .program-box {
    height: 100%;
}

.news-programs-row .program-box {
    display: flex;
    flex-direction: column;
}

.news-programs-row .program-box .btn {
    margin-top: auto;
}

/* Hírek kártyák igazítása a program doboz magasságához */

.news-cards-row {
    height: 100%;
}

.news-cards-row>[class*="col-"] {
    display: flex;
}

.news-card {
    min-height: 466px;
    display: flex;
    flex-direction: column;
}

.news-card .p-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .p-4 a {
    margin-top: auto;
}

.program-box {
    min-height: 466px;
}

.news-card p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card>img {
    object-position: top center;
}

/* Táborok aloldal */

.subhero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}

.camps-hero {
    background:
        linear-gradient(90deg, rgba(0, 35, 72, .92), rgba(0, 118, 180, .45)),
        url('/assets/frontend/img/hero-water.jpg') center 45% / cover no-repeat;
}

.subhero::after {
    content: '';
    position: absolute;
    inset: auto -10% -90px -10%;
    height: 160px;
    background: #f4fbff;
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    z-index: 1;
}

.subhero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.subhero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 950;
    text-transform: uppercase;
    line-height: .9;
    text-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.subhero p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dff7ff;
}

.camp-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 174, 239, .1);
    transition: .32s cubic-bezier(.2, .8, .2, 1);
}

.camp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow2);
}

.camp-card-img {
    min-height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.camp-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 38, 80, .68), rgba(0, 174, 239, .05));
}

.camp-card-img span {
    position: absolute;
    left: 24px;
    bottom: 22px;
    background: var(--yellow);
    color: var(--navy);
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 950;
    text-transform: uppercase;
    font-size: .82rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.camp-card-body {
    padding: 30px;
}

.camp-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    background: #e8f8ff;
    border-radius: 14px;
    padding: .65rem .9rem;
    margin-bottom: 18px;
}

.camp-date i {
    color: var(--cyan);
    font-size: 1.25rem;
}

.camp-card h3 {
    font-size: 1.55rem;
    font-weight: 950;
    color: var(--navy);
    margin-bottom: 12px;
}

.camp-card p {
    color: #496b83;
    font-size: .98rem;
    line-height: 1.65;
}

.camp-meta {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.camp-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #254f70;
    font-weight: 800;
}

.camp-meta i {
    color: var(--cyan);
}

.camp-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.camp-actions .btn {
    border-radius: 999px;
    padding: .8rem 1.4rem;
}

.camp-card.featured {
    border: 2px solid rgba(0, 174, 239, .32);
}

.camp-card.featured .camp-card-img span {
    background: var(--cyan);
    color: #fff;
}

@media (max-width: 575px) {
    .subhero {
        min-height: 320px;
    }

    .camp-card-img {
        min-height: 190px;
    }

    .camp-card-body {
        padding: 24px;
    }

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

/* =========================================================
   Tábor részletek oldal
   Illeszkedik a meglévő Delfin Bootstrap template stílusához
========================================================= */

.camp-detail-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 38%;
    overflow: hidden;
    isolation: isolate;
}

.camp-detail-hero::before {
    content: '';
    position: absolute;
    inset: auto -10% -105px -10%;
    height: 180px;
    background: #f4fbff;
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    z-index: 3;
}

.camp-detail-hero-content {
    position: relative;
    z-index: 4;
    padding: 90px 0 120px;
}

.camp-detail-hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(2.9rem, 6vw, 5.6rem);
    font-weight: 950;
    line-height: .9;
    text-transform: uppercase;
    text-shadow: 0 14px 42px rgba(0, 0, 0, .28);
}

.camp-detail-hero p {
    max-width: 720px;
    margin: 24px 0 30px;
    color: #e0f8ff;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
    font-weight: 800;
}

.camp-detail-section {
    margin-top: -1px;
}

.camp-detail-card,
.sidebar-box {
    background: #fff;
    border: 1px solid rgba(0, 174, 239, .1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.camp-detail-img-wrap {
    position: relative;
    overflow: hidden;
}

.camp-detail-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 45, 88, .5), transparent 58%);
    pointer-events: none;
}

.camp-detail-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.camp-detail-badge {
    position: absolute;
    left: 30px;
    bottom: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    background: var(--yellow);
    color: var(--navy);
    padding: .58rem 1.05rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.camp-detail-body {
    padding: 38px;
}

.camp-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: .68rem 1rem;
    background: #e8f8ff;
    color: var(--blue);
    border-radius: 14px;
    font-weight: 950;
}

.camp-detail-date i {
    color: var(--cyan);
    font-size: 1.2rem;
}

.camp-detail-body h2,
.camp-detail-body h3 {
    color: var(--navy);
    font-weight: 950;
}

.camp-detail-body h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.05;
}

.camp-detail-body h3 {
    margin: 36px 0 18px;
    font-size: 1.45rem;
    text-transform: uppercase;
}

.camp-detail-body p {
    color: #496b83;
    font-size: 1rem;
    line-height: 1.75;
}

.lead-text {
    color: #254f70 !important;
    font-size: 1.12rem !important;
    font-weight: 700;
}

.camp-highlight-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin: 30px 0;
    padding: 22px;
    background: linear-gradient(135deg, #e8f8ff, #fff);
    border-left: 5px solid var(--cyan);
    border-radius: 18px;
}

.camp-highlight-box i {
    color: var(--cyan);
    font-size: 2rem;
    line-height: 1;
}

.camp-highlight-box strong {
    display: block;
    color: var(--blue);
    font-weight: 950;
    margin-bottom: 4px;
}

.camp-highlight-box span {
    color: #496b83;
}

.camp-feature-row {
    margin: 30px 0 4px;
}

.camp-feature-box {
    height: 100%;
    padding: 22px;
    background: #f4fbff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 18px;
}

.camp-feature-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue2));
    border-radius: 14px;
    font-size: 1.35rem;
}

.camp-feature-box strong {
    display: block;
    color: var(--navy);
    font-weight: 950;
    margin-bottom: 6px;
}

.camp-feature-box span {
    color: #607b8f;
    font-size: .92rem;
}

.camp-check-list {
    display: grid;
    gap: 13px;
}

.camp-check-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #254f70;
    font-weight: 800;
}

.camp-check-list i {
    color: var(--cyan);
    margin-top: 3px;
}

.camp-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.camp-detail-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 24px;
}

.sidebar-box {
    padding: 28px;
}

.sidebar-box h3 {
    margin-bottom: 22px;
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 950;
    text-transform: uppercase;
}

.camp-info-row {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #e6f0f7;
}

.camp-info-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.camp-info-row:first-of-type {
    padding-top: 0;
}

.camp-info-row i {
    flex: 0 0 auto;
    color: var(--cyan);
    font-size: 1.45rem;
    margin-top: 2px;
}

.camp-info-row span {
    display: block;
    color: #607b8f;
    font-size: .82rem;
    font-weight: 700;
}

.camp-info-row strong {
    display: block;
    color: var(--navy);
    font-weight: 950;
    line-height: 1.25;
}

.camp-apply-box {
    color: #fff;
    background:
        radial-gradient(circle at 20% 16%, rgba(125, 227, 255, .38), transparent 32%),
        linear-gradient(135deg, var(--blue), var(--cyan));
}

.camp-apply-box h3,
.camp-apply-box p {
    color: #fff;
}

.other-camp-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #e6f0f7;
    text-decoration: none;
}

.other-camp-link:first-of-type {
    padding-top: 0;
}

.other-camp-link:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.other-camp-link strong {
    display: block;
    color: var(--navy);
    font-weight: 950;
    transition: .2s;
}

.other-camp-link span {
    color: #607b8f;
    font-size: .9rem;
}

.other-camp-link:hover strong {
    color: var(--cyan);
}

@media (max-width: 991px) {
    .camp-detail-hero {
        min-height: 460px;
    }

    .camp-detail-hero-content {
        padding: 72px 0 105px;
    }

    .camp-detail-sidebar {
        position: static;
    }

    .camp-detail-img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .camp-detail-hero {
        min-height: 400px;
    }

    .camp-detail-body,
    .sidebar-box {
        padding: 24px;
    }

    .camp-detail-img {
        height: 240px;
    }

    .camp-detail-badge {
        left: 20px;
        bottom: 20px;
    }

    .camp-detail-actions .btn {
        width: 100%;
    }
}

/* =========================================================
   Tábor jelentkezés oldal
   Illeszkedik a meglévő Delfin Bootstrap template stílusához
========================================================= */

.camp-apply-hero {
    background-position: center 42%;
}

.camp-apply-section {
    margin-top: -1px;
}

.camp-apply-form {
    display: grid;
    gap: 24px;
}

.apply-card {
    background: #fff;
    border: 1px solid rgba(0, 174, 239, .1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    overflow: hidden;
}

.apply-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.apply-step {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.apply-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 950;
    line-height: 1.1;
}

.apply-camp-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    background: var(--yellow);
    color: var(--navy);
    padding: .58rem 1.05rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
}

.selected-camp-card {
    background:
        radial-gradient(circle at 12% 0%, rgba(125, 227, 255, .22), transparent 30%),
        #fff;
}

.selected-camp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.selected-camp-item {
    min-height: 138px;
    padding: 18px;
    background: #f4fbff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 18px;
}

.selected-camp-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue2));
    border-radius: 14px;
    font-size: 1.25rem;
}

.selected-camp-item span {
    display: block;
    color: #607b8f;
    font-size: .82rem;
    font-weight: 800;
}

.selected-camp-item strong {
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font-weight: 950;
    line-height: 1.25;
}

.child-box {
    position: relative;
    padding: 24px;
    background: #f9fdff;
    border: 1px solid rgba(0, 174, 239, .14);
    border-radius: 20px;
}

.child-box+.child-box {
    margin-top: 18px;
}

.child-box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.child-box-title strong {
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 950;
}

.child-box-title span {
    color: #607b8f;
    font-size: .88rem;
    font-weight: 700;
}

.add-child-btn {
    flex: 0 0 auto;
}

.remove-child-btn {
    border: 0;
    background: #ffeef0;
    color: #c2273c;
    border-radius: 999px;
    padding: .45rem .8rem;
    font-size: .82rem;
    font-weight: 900;
    transition: .2s;
}

.remove-child-btn:hover {
    background: #ffdce1;
    transform: translateY(-2px);
}

.camp-apply-form .form-label {
    color: var(--navy);
    font-size: .9rem;
    font-weight: 900;
}

.camp-apply-form .form-control,
.camp-apply-form .form-select {
    min-height: 48px;
    border: 1px solid #d8edf8;
    border-radius: 14px;
    color: var(--text);
    font-weight: 650;
    box-shadow: none;
}

.camp-apply-form textarea.form-control {
    min-height: 96px;
}

.camp-apply-form .form-control:focus,
.camp-apply-form .form-select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 .22rem rgba(0, 174, 239, .16);
}

.billing-switch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.billing-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 18px;
    background: #f4fbff;
    border: 2px solid transparent;
    border-radius: 18px;
    cursor: pointer;
    transition: .22s;
}

.billing-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.billing-option i {
    color: var(--cyan);
    font-size: 1.5rem;
}

.billing-option span {
    color: var(--navy);
    font-weight: 950;
}

.billing-option.active,
.billing-option:hover {
    background: #fff;
    border-color: rgba(0, 174, 239, .45);
    box-shadow: 0 12px 32px rgba(0, 54, 98, .1);
}

.billing-note {
    margin-bottom: 18px;
    padding: 16px 18px;
    color: #496b83;
    background: #f9fdff;
    border-left: 5px solid var(--cyan);
    border-radius: 16px;
    font-weight: 700;
}

.company-billing-box {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e6f0f7;
}

.accept-list {
    display: grid;
    gap: 14px;
}

.accept-list .form-check {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 16px 18px;
    background: #f4fbff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 16px;
}

.accept-list .form-check-input {
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    margin: .12rem 0 0;
    border-color: var(--cyan);
    box-shadow: none;
}

.accept-list .form-check-input:checked {
    background-color: var(--cyan);
    border-color: var(--cyan);
}

.accept-list .form-check-label {
    color: #254f70;
    font-weight: 800;
    line-height: 1.45;
}

.apply-submit-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 10%, rgba(125, 227, 255, .35), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
}

.apply-submit-box strong,
.apply-submit-box span {
    display: block;
}

.apply-submit-box strong {
    font-size: 1.16rem;
    font-weight: 950;
}

.apply-submit-box span {
    color: #e0f8ff;
    font-weight: 700;
}

.apply-sidebar {
    position: sticky;
    top: 110px;
}

.price-summary-box {
    background:
        radial-gradient(circle at 16% 0%, rgba(125, 227, 255, .24), transparent 32%),
        #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #e6f0f7;
}

.summary-row span {
    color: #607b8f;
    font-weight: 800;
}

.summary-row strong {
    color: var(--navy);
    font-weight: 950;
    text-align: right;
}

.discount-row strong {
    color: var(--cyan);
}

.summary-total {
    margin-top: 20px;
    padding: 22px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    border-radius: 18px;
    color: #fff;
}

.summary-total span,
.summary-total strong {
    display: block;
}

.summary-total span {
    color: #cdeeff;
    font-weight: 800;
}

.summary-total strong {
    margin-top: 4px;
    font-size: 2rem;
    font-weight: 950;
}

.summary-help {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    background: #fff8d9;
    border-radius: 16px;
    color: #5c4a00;
    font-weight: 800;
}

.summary-help i {
    color: #d9a900;
    font-size: 1.25rem;
}

@media (max-width: 1199px) {
    .selected-camp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .apply-sidebar {
        position: static;
    }
}

@media (max-width: 575px) {

    .apply-card,
    .child-box,
    .apply-submit-box {
        padding: 22px;
    }

    .apply-card-header,
    .apply-submit-box,
    .child-box-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .selected-camp-grid,
    .billing-switch {
        grid-template-columns: 1fr;
    }

    .add-child-btn,
    .apply-submit-box .btn {
        width: 100%;
    }

    .summary-total strong {
        font-size: 1.6rem;
    }
}

.tao-hero .subhero-content {
    max-width: 900px;
}

.tao-hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: .95;
    max-width: 900px;
}

.tao-hero p {
    max-width: 780px;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.swim-hero {
    background:
        linear-gradient(90deg, rgba(0, 35, 72, .93), rgba(0, 118, 180, .45)),
        url('/assets/frontend/img/hero-water.jpg') center 45% / cover no-repeat;
}

.swim-hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 4.3rem);
}

.swim-section {
    padding-top: 58px;
}

.swim-quote {
    max-width: 880px;
    margin: 0 auto 42px;
    padding: 28px 34px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 12% 0%, rgba(125, 227, 255, .38), transparent 32%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 26px;
    box-shadow: var(--shadow2);
}

.swim-quote i {
    display: block;
    margin-bottom: 10px;
    color: var(--yellow);
    font-size: 2rem;
}

.swim-quote strong {
    display: block;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 950;
    line-height: 1.25;
}

.swim-article {
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 174, 239, .12);
}

.swim-article h2 {
    color: var(--navy);
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    font-weight: 950;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.swim-article p {
    color: #496b83;
    font-size: 1.08rem;
    line-height: 1.95;
    font-weight: 650;
    margin-bottom: 24px;
}

.swim-side-box {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 22px;
}

.swim-stat-card,
.swim-cta-card {
    background: #fff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.swim-stat-card h3,
.swim-cta-card h3 {
    color: var(--blue);
    font-size: 1.18rem;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.swim-stat-row {
    display: flex;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #e6f0f7;
}

.swim-stat-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.swim-stat-row i {
    color: var(--cyan);
    font-size: 1.4rem;
}

.swim-stat-row strong {
    display: block;
    color: var(--navy);
    font-weight: 950;
}

.swim-stat-row span {
    display: block;
    color: #607b8f;
    font-size: .88rem;
    font-weight: 750;
}

.swim-cta-card {
    color: #fff;
    background:
        radial-gradient(circle at 18% 10%, rgba(125, 227, 255, .36), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--cyan));
}

.swim-cta-card h3,
.swim-cta-card p {
    color: #fff;
}

.swim-cta-card p {
    line-height: 1.65;
    font-weight: 700;
    margin-bottom: 20px;
}

.swim-values {
    margin-top: 38px;
}

.swim-value-card {
    height: 100%;
    padding: 26px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 227, 255, .18), transparent 36%),
        #fff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: .3s ease;
}

.swim-value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow2);
}

.swim-value-card i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue2));
    border-radius: 18px;
    font-size: 1.45rem;
}

.swim-value-card strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 950;
    margin-bottom: 8px;
}

.swim-value-card span {
    color: #607b8f;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .swim-side-box {
        position: static;
        margin-top: 28px;
    }
}

@media (max-width: 575px) {
    .swim-section {
        padding-top: 42px;
    }

    .swim-article,
    .swim-stat-card,
    .swim-cta-card,
    .swim-quote {
        padding: 24px;
    }

    .swim-article p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

.course-hero {
    background:
        linear-gradient(90deg, rgba(0, 35, 72, .93), rgba(0, 118, 180, .45)),
        url('/assets/frontend/img/hero-water.jpg') center 45% / cover no-repeat;
}

.course-hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 4.3rem);
}

.course-section {
    padding-top: 58px;
}

.course-quote {
    max-width: 920px;
    margin: 0 auto 42px;
    padding: 28px 34px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 12% 0%, rgba(125, 227, 255, .38), transparent 32%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 26px;
    box-shadow: var(--shadow2);
}

.course-quote i {
    display: block;
    margin-bottom: 10px;
    color: var(--yellow);
    font-size: 2rem;
}

.course-quote strong {
    display: block;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 950;
    line-height: 1.25;
}

.course-note {
    max-width: 920px;
    margin: 0 auto 38px;
    padding: 22px 26px;
    background: #fff;
    border-left: 6px solid var(--cyan);
    border-radius: 20px;
    box-shadow: var(--shadow);
    color: #496b83;
    font-weight: 750;
    line-height: 1.7;
}

.course-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: .3s ease;
}

.course-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow2);
}

.course-card-head {
    padding: 26px 28px;
    color: #fff;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 227, 255, .32), transparent 36%),
        linear-gradient(135deg, var(--blue), var(--blue2));
}

.course-card-head span {
    display: inline-flex;
    padding: .42rem .8rem;
    margin-bottom: 14px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.course-card-head h2 {
    margin: 0;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1.2;
}

.course-card-body {
    padding: 28px;
}

.course-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: .72rem 1rem;
    color: var(--blue);
    background: #e8f8ff;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 950;
}

.course-price i {
    color: var(--cyan);
}

.course-info-list {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.course-info-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #254f70;
    font-weight: 750;
    line-height: 1.45;
}

.course-info-list i {
    color: var(--cyan);
    margin-top: 3px;
    font-size: 1.05rem;
}

.course-info-list strong {
    color: var(--navy);
    font-weight: 950;
}

.course-dates {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e6f0f7;
}

.course-dates h3 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 950;
    text-transform: uppercase;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.date-grid span {
    display: block;
    padding: .48rem .65rem;
    background: #f4fbff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 12px;
    color: #496b83;
    font-size: .88rem;
    font-weight: 800;
}

.course-wide-card {
    margin-top: 34px;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.course-wide-card h2 {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.course-wide-card p,
.course-wide-card li {
    color: #496b83;
    line-height: 1.75;
    font-weight: 700;
}

.course-programs {
    display: grid;
    gap: 18px;
}

.course-program-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #f9fdff;
    border: 1px solid rgba(0, 174, 239, .12);
    border-radius: 20px;
}

.course-program-item i {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--cyan), var(--blue2));
    border-radius: 16px;
    font-size: 1.3rem;
}

.course-program-item h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 950;
}

.course-program-item p {
    margin: 0;
}

.course-program-item strong {
    color: var(--blue);
    font-weight: 950;
}

.course-cta {
    margin-top: 34px;
    padding: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 10%, rgba(125, 227, 255, .36), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 26px;
    box-shadow: var(--shadow2);
}

.course-cta h2,
.course-cta p {
    color: #fff;
}

.course-cta h2 {
    font-size: 1.55rem;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.course-cta p {
    margin: 0;
    font-weight: 750;
    line-height: 1.65;
}

@media (max-width: 575px) {
    .course-section {
        padding-top: 42px;
    }

    .course-quote,
    .course-note,
    .course-card-body,
    .course-card-head,
    .course-wide-card,
    .course-cta {
        padding: 24px;
    }

    .date-grid {
        grid-template-columns: 1fr;
    }

    .course-program-item {
        flex-direction: column;
    }
}

.board-hero {
    background:
        linear-gradient(90deg, rgba(0, 35, 72, .93), rgba(0, 118, 180, .45)),
        url('/assets/frontend/img/hero-water.jpg') center 45% / cover no-repeat;
}

.board-hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 4.3rem);
}

.board-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 174, 239, .12);
    transition: .3s ease;
}

.board-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
}

.board-img {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #e8f8ff;
}

.board-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: .45s ease;
}

.board-card:hover .board-img img {
    transform: scale(1.06);
}

.board-role {
    position: absolute;
    left: 22px;
    bottom: 20px;
    background: var(--yellow);
    color: var(--navy);
    padding: .55rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.board-body {
    padding: 28px;
}

.board-body h2 {
    color: var(--navy);
    font-size: 1.55rem;
    font-weight: 950;
    margin-bottom: 8px;
}

.board-body p {
    color: #496b83;
    line-height: 1.7;
    font-weight: 650;
    margin-bottom: 0;
}

.board-contact {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.board-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4fbff;
    color: var(--blue);
    border-radius: 999px;
    padding: .55rem .9rem;
    font-weight: 850;
    font-size: .9rem;
}

.board-contact i {
    color: var(--cyan);
}

.board-intro {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 174, 239, .12);
    padding: 32px;
    margin-bottom: 34px;
}

.board-intro h2 {
    color: var(--navy);
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.board-intro p {
    color: #496b83;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 575px) {
    .board-img {
        height: 260px;
    }

    .board-body,
    .board-intro {
        padding: 24px;
    }
}

.board-hero {
    min-height: 300px;
}

.board-hero::after {
    height: 85px;
    bottom: -52px;
}

.board-hero .subhero-content {
    padding-bottom: 35px;
}

.board-section {
    padding-top: 42px;
}

.board-section {
    padding-top: 56px;
}

.board-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.board-title .eyebrow {
    color: var(--cyan);
    justify-content: center;
}

.board-title .eyebrow:before {
    display: none;
}

.board-title h2 {
    color: var(--navy);
    font-weight: 950;
    text-transform: uppercase;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    margin-bottom: 14px;
}

.board-title p {
    color: #496b83;
    font-weight: 700;
    line-height: 1.7;
}

.board-card {
    height: 100%;
    position: relative;
    padding: 34px 28px 30px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(125, 227, 255, .22), transparent 34%),
        rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 174, 239, .16);
    border-radius: 26px;
    box-shadow: var(--shadow);
    transition: .3s ease;
    overflow: hidden;
}

.board-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
}

.board-avatar {
    width: 154px;
    height: 154px;
    margin: 0 auto 22px;
    padding: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue2));
    box-shadow: 0 18px 36px rgba(0, 114, 188, .22);
}

.board-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 5px solid #fff;
}

.board-role {
    display: inline-flex;
    margin-bottom: 14px;
    padding: .45rem .9rem;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.board-card h3 {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 950;
    margin-bottom: 14px;
}

.board-card p {
    color: #496b83;
    font-size: .95rem;
    line-height: 1.65;
    font-weight: 650;
    margin-bottom: 22px;
}

.board-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.board-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .45rem .7rem;
    background: #f4fbff;
    color: var(--blue);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.board-tags i {
    color: var(--cyan);
}

@media (max-width: 575px) {
    .board-section {
        padding-top: 38px;
    }

    .board-card {
        padding: 28px 22px;
    }

    .board-avatar {
        width: 132px;
        height: 132px;
    }
}

.board-avatar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.board-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    padding: .45rem .9rem;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.board-tags {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.board-card .board-role {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto 16px !important;
    padding: .45rem .9rem;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.board-tags {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-hero {
    background:
        linear-gradient(90deg, rgba(0, 35, 72, .92), rgba(0, 118, 180, .45)),
        url('/assets/frontend/img/hero-water.jpg') center 45% / cover no-repeat;
}

.news-hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 4.3rem);
}

.news-page-section {
    padding-top: 58px;
}

.news-page-title {
    max-width: 920px;
    margin: 0 auto 38px;
    text-align: center;
}

.news-page-title .eyebrow {
    justify-content: center;
    color: var(--cyan);
}

.news-page-title .eyebrow:before {
    display: none;
}

.news-page-title h2 {
    color: var(--navy);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.news-page-title p {
    color: #496b83;
    font-size: 1.04rem;
    line-height: 1.75;
    font-weight: 750;
    margin: 0;
}

.news-filter-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.news-filter-btn {
    border: 0;
    padding: .68rem 1.05rem;
    border-radius: 999px;
    color: var(--blue);
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 54, 98, .08);
    font-weight: 950;
    transition: .22s ease;
}

.news-filter-btn:hover,
.news-filter-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    transform: translateY(-2px);
}

.featured-news {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 30px;
    box-shadow: var(--shadow2);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    margin-bottom: 42px;
    isolation: isolate;
}

.featured-news:before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 30, 66, .92), rgba(0, 114, 188, .18)),
        radial-gradient(circle at 16% 8%, rgba(255, 210, 51, .25), transparent 26%);
    z-index: 1;
}

.featured-news-content {
    position: relative;
    z-index: 2;
    padding: 42px;
    max-width: 760px;
    color: #fff;
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .45rem .8rem;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.featured-news h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 950;
    line-height: 1;
    margin-bottom: 14px;
}

.featured-news p {
    color: #dff7ff;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 750;
    margin-bottom: 22px;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cdeeff;
    font-weight: 850;
    margin-bottom: 14px;
}

.news-grid {
    align-items: stretch;
}

.news-item {
    display: flex;
}

.news-card-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 174, 239, .12);
    transition: .3s ease;
}

.news-card-page:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
}

.news-card-img {
    position: relative;
    min-height: 210px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.news-card-img:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 45, 88, .62), transparent 58%);
}

.news-card-img .news-category {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    margin: 0;
}

.news-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-body .news-date {
    color: var(--blue);
    font-size: .88rem;
    margin-bottom: 12px;
}

.news-card-body h3 {
    color: var(--navy);
    font-size: 1.32rem;
    font-weight: 950;
    line-height: 1.22;
    margin-bottom: 12px;
}

.news-card-body p {
    color: #496b83;
    line-height: 1.65;
    font-weight: 650;
    margin-bottom: 20px;
}

.news-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.news-source {
    color: #6b879a;
    font-size: .82rem;
    font-weight: 800;
}

.news-hidden {
    display: none !important;
}

.news-modal .modal-content {
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow2);
}

/* .news-modal-img {
    /* height: 550px;
    background-size: cover;
    background-position: center;

    height: 550px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f9fa;
} */

.news-modal-img {
    background: none;
    height: auto;
}

.news-modal-img img {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    display: block;
}

.news-modal-xl {
    max-width: 1400px;
}

.news-modal-body {
    padding: 34px;
}

.news-modal-body h2 {
    color: var(--navy);
    font-weight: 950;
    margin-bottom: 12px;
}

.news-modal-body p {
    color: #496b83;
    line-height: 1.78;
    font-weight: 650;
    margin-bottom: 16px;
}

.news-modal-body ul {
    color: #496b83;
    font-weight: 700;
    line-height: 1.7;
}

.news-info-card {
    margin-top: 42px;
    padding: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 10%, rgba(125, 227, 255, .36), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 26px;
    box-shadow: var(--shadow2);
}

.news-info-card h2,
.news-info-card p {
    color: #fff;
}

.news-info-card h2 {
    font-size: 1.55rem;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-info-card p {
    font-weight: 750;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .featured-news {
        min-height: 360px;
    }

    .featured-news-content,
    .news-modal-body {
        padding: 26px;
    }

    .news-card-img {
        min-height: 190px;
    }
}

.news-card-video {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    background: #00345f;
}

.news-card-video video {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
}

.news-card-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 45, 88, .62), transparent 58%);
    pointer-events: none;
}

.news-card-video .news-category {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    margin: 0;
}

.video-play-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 52, 95, .78);
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    font-size: 1.45rem;
}

.news-modal-video {
    background: #00345f;
}

.news-modal-video video {
    width: 100%;
    max-height: 70vh;
    display: block;
    background: #000;
}

.news-modal .modal-dialog {
    max-height: calc(100vh - 40px);
}

.news-modal .modal-content {
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

.news-modal-img,
.news-modal-video {
    flex: 0 0 auto;
}

.news-modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 320px);
}

@media (max-width: 767px) {

    .news-modal .modal-dialog,
    .news-modal .modal-content {
        max-height: calc(100vh - 20px);
    }
}

.news-modal-img-top {
    background-position: center 8% !important;
}

.uploading-page {
    position: relative;
    min-height: calc(100vh - 145px);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    isolation: isolate;
}

.uploading-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 35, 78, .94) 0%, rgba(0, 74, 132, .78) 45%, rgba(0, 173, 232, .45) 100%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, .22), transparent 34%);
    z-index: -2;
}

.uploading-bubbles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .28) 2px, transparent 3px),
        radial-gradient(circle, rgba(255, 255, 255, .18) 1px, transparent 2px);
    background-size: 90px 90px, 140px 140px;
    background-position: 10px 20px, 40px 70px;
    opacity: .45;
    z-index: -1;
}

.min-vh-uploading {
    min-height: calc(100vh - 145px);
    padding: 80px 0;
}

.uploading-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 30px 80px rgba(0, 31, 75, .35);
    backdrop-filter: blur(14px);
    border-radius: 34px;
    padding: 55px 45px;
    color: #fff;
}

.uploading-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    border-radius: 28px;
    background: #fff;
    color: #00aeef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.uploading-card .eyebrow {
    display: flex;
    color: #a9eeff;
    margin-bottom: 18px;
}

.uploading-card .eyebrow:before {
    content: "";
    width: 54px;
    height: 4px;
    background: #ffcf32;
    border-radius: 99px;
    display: inline-block;
    margin-right: 14px;
    align-self: center;
}

.uploading-card h1 {
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.uploading-card p {
    max-width: 660px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.65;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
}

.uploading-wave {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
}

.uploading-wave span {
    width: 42px;
    height: 8px;
    border-radius: 99px;
    background: #00aeef;
    display: block;
}

.uploading-wave span:nth-child(2) {
    background: #ffcf32;
}

.uploading-wave span:nth-child(3) {
    background: #fff;
}

@media (max-width: 575px) {
    .uploading-card {
        padding: 42px 24px;
        border-radius: 26px;
    }

    .uploading-icon {
        width: 78px;
        height: 78px;
        font-size: 38px;
    }

    .uploading-card p {
        font-size: 18px;
    }
}

.why-us-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.why-us-card h3 {
    color: #004f96;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #123456;
}

.why-item i {
    color: #00a8ef;
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

.why-us-card .btn {
    background: #0059a5;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 14px;
}

.why-us-card .btn:hover {
    background: #004381;
}

.why-us-card {
    width: 100%;
    max-width: 520px;
    min-height: 360px;
}

.why-us-card .btn {
    max-width: 100%;
}

.subhero-content reveal h1 {
    font-size: 16pt !important;
}

.legal-title {
    font-size: clamp(30px, 3.5vw, 52px) !important;
    line-height: 1.15;
    text-transform: uppercase;
    max-width: 900px;
}

.cards {
    background: rgba(255, 255, 255, .94);
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 8px;
    max-width: 360px;
    width: 100%;
    display: block;
    object-fit: contain;
}

.footer-bottom {
    padding-top: 10px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: .2s;
}

.footer-links a:hover {
    opacity: .8;
}

.separator {
    opacity: .5;
}

.accept-list .accept-link {
    color: inherit;
    text-decoration: none;
}

.accept-list .accept-link:hover {
    color: inherit;
    text-decoration: none;
}

.sp_white {
    float: left;
    height: 50px;
    margin-right: 15px;
}

/*------------------------------*/
.payment-result-card {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 56, 112, 0.12);
}

.payment-result-header {
    height: 8px;
    background: linear-gradient(90deg, #00a3ff, #004b93);
}

.payment-result-body {
    padding: 3rem;
}

.payment-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon-success {
    background: rgba(25, 135, 84, 0.12);
}

.payment-icon-fail {
    background: rgba(220, 53, 69, 0.12);
}

.payment-icon i {
    font-size: 4rem;
}

.payment-title {
    color: #003f7f;
    font-weight: 800;
    margin-bottom: 15px;
}

.payment-info-box {
    background: #f7fbff;
    border: 1px solid #d8e7f5;
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0;
}

.payment-label {
    display: block;
    color: #7b8aa0;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.payment-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003f7f;
}

.payment-btn {
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
}

.payment-note {
    background: #eef7ff;
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 15px;
    color: #4d647f;
    margin-bottom: 25px;
}

.payment-result-card {
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 56, 112, 0.14);
}

.payment-result-header {
    height: 10px;
    background: linear-gradient(90deg, #00aeef, #005493);
}

.payment-result-body {
    padding: 3.5rem 3rem;
}

.payment-icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon-success {
    background: rgba(25, 135, 84, 0.12);
}

.payment-icon-fail {
    background: rgba(220, 53, 69, 0.12);
}

.payment-icon i {
    font-size: 4.4rem;
    line-height: 1;
}

.payment-title {
    color: #004b93;
    font-size: 2.15rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.payment-info-box {
    background: #f7fbff;
    border: 1px solid #d8e9f8;
    border-radius: 18px;
    padding: 20px 22px;
    margin: 24px 0;
}

.payment-label {
    display: block;
    color: #6f8299;
    font-size: 0.88rem;
    margin-bottom: 7px;
}

.payment-value {
    color: #003f7f;
    font-size: 1.2rem;
    font-weight: 800;
    word-break: break-word;
}

.payment-note {
    background: #eef8ff;
    border-left: 5px solid #00aeef;
    border-radius: 16px;
    padding: 16px 18px;
    color: #4b6278;
    line-height: 1.65;
    margin: 24px 0;
}

.payment-btn {
    border: 0;
    border-radius: 14px;
    padding: 13px 30px;
    font-weight: 800;
    background: linear-gradient(135deg, #0076d7, #005493);
    box-shadow: 0 8px 20px rgba(0, 84, 147, 0.22);
}

.payment-btn:hover {
    background: linear-gradient(135deg, #005493, #003f7f);
}

@media (max-width: 576px) {
    .payment-result-body {
        padding: 2.5rem 1.4rem;
    }

    .payment-title {
        font-size: 1.75rem;
    }

    .payment-icon {
        width: 92px;
        height: 92px;
    }

    .payment-icon i {
        font-size: 3.6rem;
    }
}

.board-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b8ed9, #005b96);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 42px;
    box-shadow: 0 16px 35px rgba(0, 91, 150, 0.22);
}

.board-avatar i {
    line-height: 1;
}

.board-card {
    height: 100%;
}
/* ===========================
   HOME - TANFOLYAMOK
=========================== */

.course-home-box {
    background: #f5f9fc;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 73, 126, .07);
}

.course-home-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 22px 20px;

    text-decoration: none;
    color: #073c68;

    background: #fff;
    border-bottom: 1px solid #e5eef5;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.course-home-item:hover {
    color: #073c68;
    background: #f6fbff;
}

.course-home-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #00aeef,
        #006db4
    );

    color: #fff;

    font-size: 23px;

    box-shadow: 0 7px 18px rgba(0, 123, 190, .20);
}

.course-home-content {
    flex: 1;
    min-width: 0;
}

.course-home-label {
    display: block;

    margin-bottom: 3px;

    color: #00a3e0;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .05em;
}

.course-home-content strong {
    display: block;

    color: #004c83;

    font-size: 16px;
    line-height: 1.25;
}

.course-home-content p {
    margin: 5px 0 10px;

    color: #66849a;

    font-size: 13px;
    line-height: 1.4;
}

.course-home-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 12px;

    color: #58758a;

    font-size: 11px;
    font-weight: 600;
}

.course-home-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.course-home-meta i {
    color: #00a3e0;
}

.course-home-arrow {
    display: flex;
    align-items: center;
    align-self: center;

    color: #00a3e0;

    font-size: 18px;

    transition: transform .25s ease;
}

.course-home-item:hover .course-home-arrow {
    transform: translateX(4px);
}


/* alsó CTA */

.course-home-footer {
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background:
        linear-gradient(
            135deg,
            #005d95,
            #008bc8
        );

    color: #fff;
}

.course-home-footer small {
    display: block;

    margin-bottom: 2px;

    opacity: .8;

    font-size: 10px;
}

.course-home-footer strong {
    display: block;

    font-size: 14px;
}

.course-home-footer .btn {
    flex-shrink: 0;

    background: #fff;
    border-color: #fff;

    color: #006fae;

    font-size: 12px;
    font-weight: 800;
}

.course-home-footer .btn:hover {
    background: #eaf8ff;
    border-color: #eaf8ff;
}


/* mobil */

@media (max-width: 575.98px) {

    .course-home-item {
        padding: 18px 16px;
    }

    .course-home-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .course-home-footer .btn {
        width: 100%;
    }
}
.course-home-empty {
    min-height: 210px;
    padding: 35px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #fff;
    color: #66849a;
}

.course-home-empty > i {
    margin-bottom: 14px;

    color: #00a3e0;
    font-size: 38px;
}

.course-home-empty strong {
    display: block;

    margin-bottom: 6px;

    color: #004c83;
    font-size: 16px;
}

.course-home-empty span {
    max-width: 260px;

    font-size: 13px;
    line-height: 1.5;
}
@media (min-width: 992px) {

    .course-home-label {
        margin-bottom: 2px;
        font-size: 10px;
        line-height: 1.2;
    }

    .course-home-content strong {
        font-size: 14px;
        line-height: 1.25;
    }

    .course-home-content p {
        margin: 4px 0 7px;
        font-size: 12px;
        line-height: 1.2;
    }

    .course-home-meta {
        font-size: 10px;
        line-height: 1.2;
        gap: 4px 10px;
    }

    .course-home-icon {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
    }
}
.news-card{
max-height:435px;min-height:435px;height:435px;
}
@media (max-width: 767.98px) {

    .hero {
        background-position: 57% center;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 8.5vw, 2.9rem);
        line-height: .92;
        max-width: 75%;
    }

    .hero .eyebrow,
    .hero-content p {
        max-width: 72%;
    }
}
@media (max-width: 767.98px) {

    .hero {
        min-height: calc(100svh - 92px);
        background-size: cover;
        background-position: 62% center;
        background-repeat: no-repeat;
    }

    .min-vh-hero {
        min-height: calc(100svh - 92px);
    }
}