/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;

    background: #08090b;

    color: #f5f5f5;

    line-height: 1.7;

    overflow-x: hidden;
}


a {
    text-decoration: none;

    color: inherit;
}


button {
    font-family: inherit;
}


:root {

    --bg: #08090b;

    --bg-soft: #0d0f12;

    --card: #111317;

    --border: #25282e;

    --white: #f5f5f5;

    --gray: #9a9da5;

    --burgundy: #8f0038;

    --burgundy-light: #b51b58;

    --gold: #c8a45d;

}



/* ==========================================
   NAVBAR
========================================== */

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(8, 9, 11, 0.75);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s;
}


.nav-container {

    max-width: 1200px;

    height: 78px;

    margin: auto;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -1px;
}


.logo span,
footer strong span {

    color: var(--burgundy-light);
}


.nav-links {

    display: flex;

    list-style: none;

    gap: 28px;
}


.nav-links a {

    color: var(--gray);

    font-size: 13px;

    transition: 0.3s;
}


.nav-links a:hover {

    color: white;
}


.nav-cv {

    padding: 9px 17px;

    border: 1px solid var(--burgundy);

    color: #ddd;

    font-size: 12px;

    border-radius: 4px;

    transition: 0.3s;
}


.nav-cv:hover {

    background: var(--burgundy);

    transform: translateY(-2px);
}


.menu-button {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 22px;

    cursor: pointer;
}



/* ==========================================
   HERO
========================================== */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;
}


.grid-background {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}


.glow {

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.12;

    animation:
        glowMove 8s infinite alternate ease-in-out;
}


.glow-one {

    background: var(--burgundy);

    top: 5%;

    right: 5%;
}


.glow-two {

    background: #633d62;

    bottom: -15%;

    left: 10%;

    animation-delay: 2s;
}


@keyframes glowMove {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(50px,-40px);
    }

}



.hero-container {

    max-width: 1200px;

    width: 100%;

    margin: auto;

    padding: 130px 25px 80px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 70px;

    position: relative;

    z-index: 2;
}



/* ==========================================
   HERO TEXT
========================================== */

.availability {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 13px;

    border: 1px solid #282b30;

    border-radius: 50px;

    color: #aaa;

    font-size: 11px;

    margin-bottom: 25px;

    background: rgba(255,255,255,0.02);
}


.status-dot {

    width: 7px;

    height: 7px;

    background: #70a678;

    border-radius: 50%;

    box-shadow: 0 0 12px #70a678;

    animation: pulse 2s infinite;
}


@keyframes pulse {

    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

}


.hero-small {

    color: var(--burgundy-light);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 8px;
}


.hero h1 {

    font-size: clamp(55px, 7vw, 88px);

    line-height: 0.95;

    letter-spacing: -4px;

    margin-bottom: 20px;
}


.hero h2 {

    font-size: clamp(20px, 3vw, 31px);

    color: #c5c6ca;

    font-weight: 600;

    margin-bottom: 22px;
}


.hero h2 span {

    color: var(--burgundy-light);

    margin: 0 5px;
}


.hero-description {

    color: var(--gray);

    max-width: 610px;

    font-size: 16px;
}


.hero-buttons {

    display: flex;

    gap: 13px;

    margin-top: 35px;
}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 21px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;

    cursor: pointer;
}


.button.primary {

    background: var(--burgundy);

    border: 1px solid var(--burgundy);
}


.button.primary:hover {

    background: var(--burgundy-light);

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(143,0,56,0.2);
}


.button.secondary {

    border: 1px solid #34373d;

    color: #ccc;
}


.button.secondary:hover {

    border-color: #777;

    transform: translateY(-3px);
}


.social-links {

    display: flex;

    gap: 18px;

    margin-top: 30px;
}


.social-links a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #292c31;

    border-radius: 50%;

    color: #858890;

    transition: 0.3s;
}


.social-links a:hover {

    color: white;

    border-color: var(--burgundy);

    transform: translateY(-4px);
}



/* ==========================================
   PHOTO
========================================== */

.hero-photo {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}


.photo-wrapper {

    width: 390px;

    height: 470px;

    position: relative;

    overflow: hidden;

    border-radius:
        190px
        190px
        18px
        18px;

    border: 1px solid #34343a;

    background: #111;

    box-shadow:
        0 35px 90px rgba(0,0,0,0.55);

    animation:
        photoFloat 6s ease-in-out infinite;
}


.photo-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.7s ease;
}


.photo-wrapper:hover img {

    transform: scale(1.04);
}


.photo-ring {

    position: absolute;

    inset: -14px;

    border: 1px solid rgba(181,27,88,0.4);

    border-radius:
        200px
        200px
        25px
        25px;

    pointer-events: none;

    z-index: -1;

    animation:
        ringPulse 4s infinite;
}


@keyframes photoFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


@keyframes ringPulse {

    0%,100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

}



/* ==========================================
   FLOATING CARDS
========================================== */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 15px;

    background: rgba(17,19,23,0.92);

    border: 1px solid #303239;

    border-radius: 7px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.3);

    animation:
        floatingCard 5s ease-in-out infinite;
}


.floating-card i {

    color: var(--burgundy-light);

    font-size: 18px;
}


.floating-card strong {

    display: block;

    font-size: 11px;
}


.floating-card small {

    display: block;

    color: #777;

    font-size: 9px;
}


.card-python {

    top: 15%;

    left: -30px;
}


.card-sql {

    right: -35px;

    top: 45%;

    animation-delay: 1s;
}


.card-powerbi {

    bottom: 10%;

    left: -45px;

    animation-delay: 2s;
}


@keyframes floatingCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}



/* ==========================================
   SCROLL
========================================== */

.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    color: #5d6067;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.scroll-indicator i {

    animation:
        arrowDown 1.5s infinite;
}


@keyframes arrowDown {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}



/* ==========================================
   SECTIONS
========================================== */

.section {

    max-width: 1200px;

    margin: auto;

    padding: 120px 25px;
}


.dark-section {

    max-width: none;

    padding-left:
        max(
            25px,
            calc((100% - 1150px) / 2)
        );

    padding-right:
        max(
            25px,
            calc((100% - 1150px) / 2)
        );

    background: #0d0f12;
}


.section-heading {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 60px;
}


.section-number {

    color: var(--burgundy-light);

    font-family: monospace;

    font-size: 13px;
}


.section-heading h2 {

    font-size: 32px;

    letter-spacing: -1px;
}


.heading-line {

    width: 170px;

    height: 1px;

    background: #292c31;
}


.eyebrow {

    color: var(--burgundy-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}



/* ==========================================
   ABOUT
========================================== */

.about-grid {

    display: grid;

    grid-template-columns: 1.3fr 0.9fr;

    gap: 80px;

    align-items: center;
}


.about-content h3 {

    font-size: 38px;

    line-height: 1.2;

    margin: 15px 0 25px;
}


.about-content h3 span {

    color: var(--burgundy-light);
}


.about-content p {

    color: var(--gray);

    font-size: 14px;

    margin-bottom: 18px;
}


.about-content strong {

    color: #ddd;
}


.about-ending {

    border-left: 2px solid var(--burgundy);

    padding-left: 15px;

    margin-top: 25px;
}


.about-stats {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;
}


.stat-card {

    background: var(--card);

    border: 1px solid var(--border);

    padding: 25px;

    border-radius: 8px;

    transition: 0.3s;
}


.stat-card:hover {

    transform: translateY(-5px);

    border-color: #6f183e;
}


.stat-icon {

    color: var(--burgundy-light);

    font-size: 20px;

    display: block;

    margin-bottom: 15px;
}


.stat-card strong {

    font-size: 16px;
}


.stat-card p {

    color: #777;

    font-size: 11px;

    margin-top: 5px;
}



/* ==========================================
   SKILLS
========================================== */

.skills-container {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}


.skill-box {

    background: #111317;

    border: 1px solid var(--border);

    padding: 28px;

    border-radius: 8px;

    transition: 0.4s;
}


.skill-box:hover {

    transform: translateY(-8px);

    border-color: #71143d;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25);
}


.skill-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #241019;

    color: var(--burgundy-light);

    margin-bottom: 22px;
}


.skill-box h3 {

    font-size: 17px;

    margin-bottom: 10px;
}


.skill-box p {

    color: #777;

    font-size: 12px;

    min-height: 75px;
}


.skill-tags,
.project-tools,
.timeline-tags,
.leadership-tags,
.education-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 18px;
}


.skill-tags span,
.project-tools span,
.timeline-tags span,
.leadership-tags span,
.education-tags span {

    padding: 5px 9px;

    background: #1b1d21;

    border: 1px solid #292c31;

    border-radius: 3px;

    color: #999;

    font-size: 9px;
}



/* ==========================================
   MARQUEE
========================================== */

.skill-marquee {

    margin-top: 80px;

    overflow: hidden;

    border-top: 1px solid #22252a;

    border-bottom: 1px solid #22252a;

    padding: 18px 0;

    white-space: nowrap;
}


.marquee-content {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    animation:
        marquee 25s linear infinite;
}


.marquee-content span {

    color: #4d5057;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.marquee-content i {

    color: var(--burgundy);
}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}



/* ==========================================
   TIMELINE
========================================== */

.timeline {

    max-width: 900px;

    margin: auto;

    position: relative;
}


.timeline::before {

    content: "";

    position: absolute;

    left: 8px;

    top: 0;

    bottom: 0;

    width: 1px;

    background: #2a2c31;
}


.timeline-item {

    position: relative;

    padding-left: 50px;

    margin-bottom: 35px;
}


.timeline-dot {

    position: absolute;

    left: 2px;

    top: 10px;

    width: 14px;

    height: 14px;

    background: var(--burgundy);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px #08090b;
}


.timeline-content {

    background: var(--card);

    border: 1px solid var(--border);

    padding: 28px;

    border-radius: 8px;

    transition: 0.3s;
}


.timeline-content:hover {

    border-color: #6f183e;

    transform: translateX(5px);
}


.timeline-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.timeline-date {

    color: var(--burgundy-light);

    font-size: 11px;

    font-family: monospace;
}


.timeline-status {

    padding: 4px 9px;

    border-radius: 20px;

    background: #162118;

    color: #77a47e;

    font-size: 8px;
}


.timeline-content h3 {

    font-size: 21px;

    margin-top: 12px;
}


.timeline-content h4 {

    color: #aaa;

    font-size: 13px;

    font-weight: 500;

    margin: 4px 0 14px;
}


.timeline-content p {

    color: #777;

    font-size: 12px;

    margin-bottom: 10px;
}



/* ==========================================
   PROJECTS
========================================== */

.section-intro {

    max-width: 650px;

    color: #777;

    font-size: 13px;

    margin-top: -35px;

    margin-bottom: 45px;
}


.projects-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 22px;
}


.project-card {

    position: relative;

    background: #111317;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 35px;

    overflow: hidden;

    transition: 0.4s;
}


.project-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--burgundy),
            transparent
        );

    transform:
        translateX(-100%);

    transition: 0.6s;
}


.project-card:hover::before {

    transform:
        translateX(100%);
}


.project-card:hover {

    transform:
        translateY(-8px);

    border-color:
        #661438;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.3);
}


.project-number {

    position: absolute;

    top: 25px;

    right: 30px;

    color: #292c31;

    font-size: 30px;

    font-weight: 800;
}


.project-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #241019;

    color: var(--burgundy-light);

    border-radius: 8px;

    margin-bottom: 25px;
}


.project-category {

    color: var(--burgundy-light);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}


.project-card h3 {

    font-size: 25px;

    margin: 10px 0 15px;
}


.project-card p {

    color: #777;

    font-size: 13px;
}


.project-result {

    display: flex;

    gap: 10px;

    align-items: flex-start;

    margin-top: 22px;

    padding: 13px;

    background: #17191d;

    border-left:
        2px solid var(--burgundy);

    color: #aaa;

    font-size: 10px;
}


.project-result i {

    color: var(--gold);
}



/* ==========================================
   LEADERSHIP
========================================== */

.leadership-card {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 30px;

    transition: 0.3s;
}


.leadership-card:hover {

    border-color:
        #6f183e;

    transform:
        translateY(-5px);
}


.leadership-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #241019;

    color: var(--burgundy-light);

    border-radius: 9px;

    font-size: 23px;
}


.leadership-content h3 {

    font-size: 20px;

    margin-top: 6px;
}


.leadership-content h4 {

    color: #aaa;

    font-size: 12px;

    font-weight: 500;
}


.leadership-content p {

    color: #777;

    font-size: 12px;

    margin-top: 12px;
}


.excellent-badge {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    color: var(--gold);

    border: 1px solid #4b4028;

    padding: 15px 20px;

    border-radius: 7px;

    min-width: 105px;
}


.excellent-badge i {

    font-size: 18px;
}


.excellent-badge span {

    font-size: 11px;

    font-weight: 700;
}


.excellent-badge small {

    color: #777;

    font-size: 8px;
}



/* ==========================================
   EDUCATION
========================================== */

.education-card {

    max-width: 850px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 28px;

    padding: 35px;

    background: #111317;

    border: 1px solid var(--border);

    border-radius: 10px;

    transition: 0.3s;
}


.education-card:hover {

    transform:
        translateY(-5px);

    border-color:
        #6f183e;
}


.education-logo {

    width: 70px;

    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #241019;

    color: var(--burgundy-light);

    border-radius: 10px;

    font-size: 28px;
}


.education-date {

    color: var(--burgundy-light);

    font-family: monospace;

    font-size: 11px;
}


.education-content h3 {

    font-size: 25px;

    margin-top: 5px;
}


.education-content h4 {

    color: #aaa;

    font-weight: 500;

    font-size: 14px;
}


.education-content p {

    color: #777;

    font-size: 12px;
}



/* ==========================================
   CONTACT
========================================== */

.contact-section {

    position: relative;

    text-align: center;

    padding: 150px 25px;

    overflow: hidden;
}


.contact-glow {

    position: absolute;

    width: 500px;

    height: 300px;

    background: var(--burgundy);

    opacity: 0.08;

    filter: blur(120px);

    left: 50%;

    top: 40%;

    transform:
        translate(-50%,-50%);
}


.contact-content {

    max-width: 700px;

    margin: auto;

    position: relative;

    z-index: 2;
}


.contact-number {

    color: var(--burgundy-light);

    font-family: monospace;

    font-size: 12px;
}


.contact-content h2 {

    font-size:
        clamp(40px,6vw,65px);

    line-height: 1.05;

    margin: 20px 0;
}


.contact-content h2 span {

    color: var(--burgundy-light);
}


.contact-content p {

    color: #777;

    font-size: 14px;

    margin-bottom: 30px;
}


.contact-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}



/* ==========================================
   FOOTER
========================================== */

footer {

    padding: 30px 25px;

    border-top:
        1px solid #202328;

    display: flex;

    justify-content: space-between;

    align-items: center;

    max-width: 1200px;

    margin: auto;
}


footer strong {

    font-size: 18px;
}


footer p {

    color: #555;

    font-size: 10px;
}


.copyright {

    font-size: 9px;
}



/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}



/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .nav-links {

        gap: 15px;
    }


    .hero-container {

        grid-template-columns:
            1fr 0.8fr;

        gap: 30px;
    }


    .photo-wrapper {

        width: 330px;

        height: 420px;
    }


    .skills-container {

        grid-template-columns:
            repeat(2,1fr);
    }

}



@media (max-width: 800px) {

    .nav-links,
    .nav-cv {

        display: none;
    }


    .menu-button {

        display: block;
    }


    .nav-links.mobile-open {

        display: flex;

        position: absolute;

        top: 78px;

        left: 0;

        width: 100%;

        background: #0b0d10;

        flex-direction: column;

        align-items: center;

        padding: 25px;

        border-bottom:
            1px solid #25282e;
    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

        padding-top: 120px;
    }


    .hero-description {

        margin: auto;
    }


    .hero-buttons,
    .social-links {

        justify-content: center;
    }


    .hero-photo {

        margin-top: 40px;
    }


    .photo-wrapper {

        width: 300px;

        height: 380px;
    }


    .about-grid {

        grid-template-columns: 1fr;
    }


    .skills-container {

        grid-template-columns:
            repeat(2,1fr);
    }


    .leadership-card {

        grid-template-columns:
            1fr;

        text-align: center;
    }


    .leadership-icon {

        margin: auto;
    }


    .leadership-tags {

        justify-content: center;
    }


    .excellent-badge {

        margin: auto;
    }

}



@media (max-width: 600px) {

    .section {

        padding:
            90px 20px;
    }


    .section-heading h2 {

        font-size: 25px;
    }


    .heading-line {

        width: 70px;
    }


    .skills-container,
    .projects-grid {

        grid-template-columns: 1fr;
    }


    .about-stats {

        grid-template-columns: 1fr;
    }


    .hero h1 {

        font-size: 54px;

        letter-spacing: -3px;
    }


    .hero h2 {

        font-size: 19px;
    }


    .hero-buttons {

        flex-direction: column;
    }


    .button {

        width: 100%;
    }


    .photo-wrapper {

        width: 270px;

        height: 350px;
    }


    .floating-card {

        transform:
            scale(0.85);
    }


    .card-python {

        left: -5px;
    }


    .card-sql {

        right: -5px;
    }


    .card-powerbi {

        left: -10px;
    }


    .education-card {

        flex-direction: column;

        text-align: center;
    }


    .education-tags {

        justify-content: center;
    }


    .contact-buttons {

        flex-direction: column;
    }


    footer {

        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

}/* ==========================================
   TRAINING & EXPERIENCE
========================================== */

.training-list {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.training-item {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 20px;
    align-items: start;
}

.training-number {
    width: 65px;
    height: 65px;
    border: 1px solid var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--burgundy-light);
    background: #111317;
}

.training-main {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--card);
    transition: 0.35s ease;
}

.training-main:hover {
    transform: translateX(6px);
    border-color: var(--burgundy);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.training-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 25px 28px;
    border-bottom: 1px solid var(--border);
}

.training-header h3 {
    font-size: 21px;
    margin-bottom: 5px;
}

.training-header h4 {
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
}

.training-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    white-space: nowrap;
}

.training-date span {
    color: var(--burgundy-light);
    font-family: monospace;
    font-size: 11px;
}

.training-date small {
    color: #777;
    font-size: 9px;
    letter-spacing: 1px;
}

.training-details {
    padding: 23px 28px;
}

.training-details p {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 10px;
}

.training-details strong {
    color: #ddd;
}

.training-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.training-tags span {
    padding: 5px 10px;
    border: 1px solid #303238;
    background: #191b1f;
    color: #999;
    border-radius: 3px;
    font-size: 9px;
    transition: 0.25s;
}

.training-tags span:hover {
    color: white;
    border-color: var(--burgundy);
}


/* ==========================================
   TRAINING RESPONSIVE
========================================== */

@media (max-width: 700px) {

    .training-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .training-number {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .training-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .training-date {
        align-items: flex-start;
    }

}