/* =========================================
GENERAL
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #0b0e11;
}

.act-blog-hero,
.act-blog-search,
.act-latest-articles,
.act-article-details,
.act-blog-cta {
    font-family: Arial, sans-serif;
}


/* =========================================
BLOG HERO
========================================= */

.act-blog-hero {
    min-height: 550px;
    overflow: hidden;
    background: #181a20;
    border-bottom: 1px solid #2b3139;
}

.act-blog-hero .container-fluid {
    padding: 0;
}

.act-blog-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 550px;
}

.act-blog-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 5vw;
    border-left: 4px solid #f0b90b;
}

.act-blog-label {
    margin-bottom: 22px;
    color: #f0b90b;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.act-blog-hero-content h1 {
    max-width: 800px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.1;
}
.act-blog-hero-content span {
    color: #f0b90b;
}
.act-blog-hero-content p {
    max-width: 760px;
    margin-bottom: 32px;
    color: #b7bdc6;
    font-size: 17px;
    line-height: 1.8;
}

.act-main-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    padding: 15px 26px;
    color: #0b0e11;
    background: #f0b90b;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.act-main-blog-btn:hover {
    color: #0b0e11;
    background: #dca900;
    transform: translateY(-3px);
}


/* =========================================
CREATIVE VISUAL
========================================= */

.act-creative-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(240, 185, 11, 0.07),
            transparent 58%
        );
}

.act-center-circle {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 170px;
    color: #f0b90b;
    background: #111418;
    border: 16px solid #f0b90b;
    border-radius: 50%;
    font-size: 46px;
    font-weight: 900;
    box-shadow: 0 0 50px rgba(240, 185, 11, 0.13);
}

.act-orbit {
    position: absolute;
    border: 1px solid rgba(240, 185, 11, 0.35);
    border-radius: 50%;
}

.orbit-one {
    width: 300px;
    height: 300px;
}

.orbit-two {
    width: 430px;
    height: 430px;
    border-style: dashed;
    border-color: rgba(183, 189, 198, 0.35);
}

.orbit-three {
    width: 550px;
    height: 550px;
    border-color: rgba(240, 185, 11, 0.12);
}

.act-skill-point {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    color: #f0b90b;
    background: #23272f;
    border: 1px solid #3b414b;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.skill-one {
    top: 18%;
    left: 18%;
}

.skill-two {
    top: 15%;
    right: 13%;
}

.skill-three {
    right: 17%;
    bottom: 13%;
}

.act-small-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #f0b90b;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(240, 185, 11, 0.5);
}

.dot-one {
    top: 17%;
    left: 48%;
}

.dot-two {
    right: 11%;
    top: 50%;
}

.dot-three {
    bottom: 16%;
    left: 31%;
}

/* =========================================
ARTICLE LIST
========================================= */

.act-latest-articles {
    padding: 10px 0;
    background: #0b0e11;
}

.act-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.act-section-heading span,
.act-details-heading span {
    display: block;
    margin-bottom: 10px;
    color: #f0b90b;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.act-section-heading h2,
.act-details-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
}

.act-article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
}

.act-article-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #2b3139;
    transition: 0.3s ease;
}

.act-article-card:hover {
    padding-left: 10px;
    border-color: #f0b90b;
}

.act-article-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    color: #f0b90b;
    background: #181a20;
    border: 1px solid #2b3139;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 900;
    transition: 0.3s ease;
}

.act-article-card:hover .act-article-number {
    color: #0b0e11;
    background: #f0b90b;
    border-color: #f0b90b;
}

.act-article-category {
    display: block;
    margin-bottom: 8px;
    color: #f0b90b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.act-article-content h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 750;
    line-height: 1.3;
}

.act-article-content p {
    margin-bottom: 15px;
    color: #aeb4bf;
    font-size: 14px;
    line-height: 1.7;
}

.act-article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #707a8a;
    font-size: 12px;
}

.act-read-article {
    color: #f0b90b;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.act-read-article:hover {
    color: #ffffff;
}

.act-no-results {
    display: none;
    margin-top: 45px;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
}


/* =========================================
ARTICLE DETAILS
========================================= */

.act-article-details {
    padding: 10px 0;
    background: #111418;
}

.act-details-heading {
    margin-bottom: 40px;
    text-align: center;
}

.act-details-heading p {
    margin: 14px 0 0;
    color: #b7bdc6;
}

.act-full-article {
    margin-bottom: 18px;
    overflow: hidden;
    background: #181a20;
    border: 1px solid #2b3139;
    border-radius: 10px;
}

.act-full-article[open] {
    border-color: rgba(240, 185, 11, 0.65);
}

.act-full-article summary {
    position: relative;
    padding: 25px 65px 25px 28px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.act-full-article summary::-webkit-details-marker {
    display: none;
}

.act-full-article summary::after {
    position: absolute;
    top: 50%;
    right: 28px;
    color: #f0b90b;
    content: "+";
    font-size: 28px;
    transform: translateY(-50%);
}

.act-full-article[open] summary::after {
    content: "−";
}

.act-full-article summary span {
    display: block;
    margin-bottom: 5px;
    color: #f0b90b;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.act-full-article-content {
    padding: 0 28px 28px;
    border-top: 1px solid #2b3139;
}

.act-full-article-content p {
    margin: 22px 0;
    color: #b7bdc6;
    font-size: 15px;
    line-height: 1.85;
}

.act-full-article-content h3 {
    margin-top: 25px;
    color: #ffffff;
    font-size: 22px;
}


/* =========================================
CTA
========================================= */

.act-blog-cta {
    padding: 0px 0;
    background: #0b0e11;
}

.act-blog-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px;
    background: #181a20;
    border: 1px solid #2b3139;
    border-left: 5px solid #f0b90b;
    border-radius: 0px;
}

.act-blog-cta-box span {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.act-blog-cta-box h2 {
    margin: 10px 0;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
}

.act-blog-cta-box p {
    margin: 0;
    color: #b7bdc6;
}

.act-blog-cta-box > a {
    flex-shrink: 0;
    padding: 15px 25px;
    color: #0b0e11;
    background: #f0b90b;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transform: translateX(-150px);
}


/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .act-blog-hero-grid {
        grid-template-columns: 1fr;
    }

    .act-blog-hero-content {
        min-height: 480px;
    }

    .act-creative-visual {
        min-height: 500px;
    }

    .act-article-list {
        grid-template-columns: 1fr;
    }

    .act-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .act-blog-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .act-blog-hero-content {
        min-height: auto;
        padding: 70px 22px;
    }

    .act-blog-hero-content h1 {
        font-size: 40px;
    }

    .act-creative-visual {
        min-height: 390px;
    }

    .act-center-circle {
        width: 125px;
        height: 125px;
        border-width: 12px;
        font-size: 34px;
    }

    .orbit-one {
        width: 220px;
        height: 220px;
    }

    .orbit-two {
        width: 310px;
        height: 310px;
    }

    .orbit-three {
        width: 390px;
        height: 390px;
    }

    .act-skill-point {
        width: 75px;
        height: 75px;
        font-size: 12px;
    }

    .act-blog-search,
    .act-latest-articles,
    .act-article-details,
    .act-blog-cta {
        padding: 65px 15px;
    }

    .act-blog-search-content h2,
    .act-section-heading h2,
    .act-details-heading h2 {
        font-size: 32px;
    }

    .act-search-form {
        flex-direction: column;
        gap: 12px;
        overflow: visible;
        background: transparent;
        border: none;
    }

    .act-search-form input,
    .act-search-form button {
        width: 100%;
        min-height: 56px;
        border-radius: 7px;
    }

    .act-search-form input {
        background: #181a20;
        border: 1px solid #2b3139;
    }

    .act-article-card {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    .act-article-number {
        width: 56px;
        height: 56px;
        font-size: 17px;
    }

    .act-article-content h3 {
        font-size: 21px;
    }

    .act-blog-cta-box {
        padding: 30px 23px;
    }

    .act-blog-cta-box h2 {
        font-size: 30px;
    }

    .act-blog-cta-box > a {
        width: 100%;
        text-align: center;
    }
}