/* ==========================================================================
   ARTICLE SECTION BASE
   ========================================================================== */

.article-section {
    background: #050505;
    padding: 110px 25px;
    position: relative;
    overflow: hidden;
}

/* Glow Effect */
.article-section::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(rgba(212, 175, 55, .08), transparent 70%);
    pointer-events: none;
}

.article-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.seo-article {
    color: #fff;
}

/* ==========================================================================
   ARTICLE COMPONENTS (LABEL, TITLE, META, INTRO)
   ========================================================================== */

.article-section .section-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .25);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 30px;
}

.seo-article h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #fff;
}

.article-meta {
    font-size: 14px;
    color: #8d8d8d;
    margin-bottom: 40px;
}

.article-meta strong {
    color: #d4af37;
    font-weight: 700;
}

.article-intro {
    font-size: 21px;
    line-height: 1.95;
    color: #dedede;
    margin-bottom: 35px;
}

/* ==========================================================================
   TYPOGRAPHY ELEMENTS (H3, P, LIST, LINK, BLOCKQUOTE)
   ========================================================================== */

.seo-article h3 {
    margin: 60px 0 22px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    color: #d4af37;
    position: relative;
    padding-left: 18px;
}

.seo-article h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    border-radius: 5px;
    background: #d4af37;
}

.seo-article p {
    font-size: 18px;
    line-height: 2;
    color: #bfbfbf;
    margin-bottom: 24px;
}

.seo-article strong {
    color: #fff;
    font-weight: 700;
}

.seo-article ul {
    margin: 30px 0;
    padding-left: 28px;
}

.seo-article li {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.9;
    color: #d2d2d2;
}

.seo-article li::marker {
    color: #d4af37;
}

.seo-article a {
    color: #d4af37;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.seo-article a:hover {
    color: #fff;
}

.seo-article blockquote {
    margin: 40px 0;
    padding: 30px;
    border-left: 4px solid #d4af37;
    background: rgba(255, 255, 255, .03);
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.9;
    color: #d8d8d8;
}

/* ==========================================================================
   MEDIA & UTILITIES (TABLE, IMG, HR, SELECTION)
   ========================================================================== */

.seo-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.seo-article th {
    background: #d4af37;
    color: #000;
    padding: 14px;
    text-align: left;
}

.seo-article td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #cfcfcf;
}

.seo-article img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 35px 0;
    display: block;
}

.seo-article hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 60px 0;
}

.seo-article ::selection {
    background: #d4af37;
    color: #000;
}

/* ==========================================================================
   ARTICLE ACCORDION / READ MORE FUNCTION
   ========================================================================== */

.article-content {
    max-height: 320px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transition: max-height .7s ease, opacity .5s ease;
}

.article-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(transparent, #050505);
    transition: .4s;
}

.article-content.active {
    max-height: 12000px;
    opacity: 1;
}

.article-content.active::after {
    opacity: 0;
    pointer-events: none;
}

.article-action {
    margin: 45px 0;
    text-align: center;
}

.article-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(212, 175, 55, .25);
}

.article-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, .35);
}

.toggle-icon {
    font-size: 18px;
    transition: .35s;
}

.article-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet Screens */
@media (max-width: 900px) {
    .article-section {
        padding: 90px 25px;
    }

    .seo-article h2 {
        font-size: 46px;
    }

    .seo-article h3 {
        font-size: 28px;
    }

    .article-intro {
        font-size: 20px;
    }

    .seo-article p {
        font-size: 17px;
    }

    .seo-article li {
        font-size: 17px;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .article-section {
        padding: 70px 20px;
    }

    .seo-article h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .article-meta {
        font-size: 13px;
    }

    .article-intro {
        font-size: 18px;
        line-height: 1.85;
    }

    .seo-article h3 {
        font-size: 25px;
        margin-top: 45px;
    }

    .seo-article p {
        font-size: 16px;
        line-height: 1.9;
    }

    .seo-article li {
        font-size: 16px;
        line-height: 1.8;
    }

    .seo-article blockquote {
        padding: 22px;
        font-size: 16px;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .article-section {
        padding: 60px 18px;
    }

    .seo-article h2 {
        font-size: 31px;
    }

    .seo-article h3 {
        font-size: 22px;
    }

    .article-intro {
        font-size: 17px;
    }

    .seo-article p {
        font-size: 15px;
    }

    .seo-article li {
        font-size: 15px;
    }

    .article-section .section-label {
        font-size: 12px;
        padding: 7px 15px;
    }
}

/* Internal Text Link */
.artikel-text-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    transition: 0.25s ease;
}

.artikel-text-link:hover {
    color: #d4af37;
    text-decoration: none;
}

.artikel-text-link:visited {
    color: inherit;
}

.artikel-text-link:active {
    color: inherit;
}

strong .artikel-text-link {
    color: inherit;
    font-weight: inherit;
}