@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,700&display=swap');

/* stylelint-disable selector-list-comma-newline-after */
body {
    width: 100%;
    font-family: 'Rubik', sans-serif;
}

@media (min-width: 1200px) {
    /*
    .container {
        max-width: 100%;
    }
*/
}

a,
a:hover {
    color: #222;
    text-decoration: none;
}

img {
    max-width: 100%;
}


.blog-header {
    line-height: 1;
    border-bottom: 1px solid #e5e5e5;
}

.blog-header-logo {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
}

.blog-header-logo:hover {
    text-decoration: none;
}

.display-4 {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .display-4 {
        font-size: 3rem;
    }
}

.nav-scroller {
    position: fixed;
    width: 100%;
    background: #FFF;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
}


.nav-collapse li {
    width: auto;
    font-size: 1.7rem;
    padding-left: 12px;
    padding-right: 12px;
}

@media screen and (max-width: 992px) {
    .nav-toggle {
        font-size: 1.2rem;
        text-align: right;
        width: 100%;
        display: block;
        padding: 3px 15px 3px 0;
    }

    .nav-collapse li {
        width: 100%;
    }
}

.card-img-right {
    height: 100%;
    border-radius: 0 3px 3px 0;
}

.flex-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.h-250 {
    height: 250px;
}

@media (min-width: 768px) {
    .h-md-250 {
        height: 250px;
    }
}

#bite-title {
    margin-top: 7rem;
    margin-bottom: 9rem;
}

@media screen and (max-width: 992px) {

    #bite-title {
        margin-top: 0rem;
        margin-bottom: 5rem;
    }

}


.page-title {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    word-break: keep-all;
}

/* Pagination */
.blog-pagination {
    margin-bottom: 4rem;
}

.blog-pagination>.btn {
    border-radius: 2rem;
}

/*
 * Blog posts
 */
.blog-post {
    margin-bottom: 4rem;
}

.blog-post-title {
    margin-bottom: .25rem;
    font-size: 2.5rem;
}

.blog-post-meta {
    margin-bottom: 1.25rem;
    color: #999;
}

/*
 * Footer
 */
.blog-footer {
    padding: 2.5rem 0;
    color: #999;
    text-align: center;
    background-color: #f9f9f9;
    border-top: .05rem solid #e5e5e5;
}

.blog-footer p:last-child {
    margin-bottom: 0;
}


/* GLOBAL */
.btn {
    border-radius: 999px;
}


/* HOME */
.tab-panel h4 {
    text-transform: uppercase;
    font-weight: 800;
}



/* portfolio Projects */
.project_info {
    font-size: 0.7em;
    margin-left: 10px;
    top: -50px;
    position: relative;
    height: 0;
}

.project_info_title {
    font-weight: 700;
    font-size: 1.25em;
}

.project_info span {
    padding: 5px;
    background: #FFF;
}

.project_info .list-inline li.list-inline-item {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.project-caption {
    font-size: 1em;
    color: #999;
    margin-top: 1rem;
    margin-bottom: 5rem;

}


/* Recent Projects */
.recent_title {
    font-size: 0.8em;
    display: block;
}

.blog-sidebar h3 {
    font-size: 1em;
}


/* HOME - RECENT ARTICLE */
.home-article {
    margin-bottom: 20px;
    border-bottom: 3px solid #EEE;
    padding-bottom: 20px;
}

.home-article p {
    font-size: 0.8rem;
}

.article-title {
    font-size: 1.1rem;
}

.article-category {
    font-size: 0.8rem;
    color: #999;
    font-weight: 800;
}

.article-date {
    font-size: 0.7rem;
    margin-top: 3px;
}

.article-summary {
    color: #999;
}



/* HOME - TABS */

/*
 CSS for the main interaction
*/
.tabset>input,
.tabset>label,
.tabset2>input,
.tabset2>label {
    display: none;
}

@media (max-width: 1200px) {

    .tabset>.row {
        margin-top: 20px;
    }

    .tabset>input[type="radio"],
    .tabset2>input[type="radio"] {
        position: absolute;
        left: -200vw;
    }

    .tabset .tab-panel {
        display: none;
    }


    /*
 Styling
*/
    .tabset>label,
    .tabset2>label {
        position: relative;
        display: inline-block;
        padding: 11px;
        border: 1px solid transparent;
        border-bottom: 0;
        cursor: pointer;
        font-weight: 600;
        background: #EEE;
        font-size: 0.85rem;
    }

    .tabset>label::after,
    .tabset2>label::after {
        /*    content: "";*/
        position: absolute;
        left: 11px;
        bottom: 10px;
        width: 22px;
        height: 3px;
        background: #8d8d8d;
    }

    .tabset>label:hover,
    .tabset>input:focus+label,
    .tabset2>label:hover,
    .tabset2>input:focus+label {
        color: #06c;
    }

    .tabset>label:hover::after,
    .tabset>input:focus+label::after,
    .tabset>input:checked+label::after,
    .tabset2>label:hover::after,
    .tabset2>input:focus+label::after,
    .tabset2>input:checked+label::after {
        background: #06c;
    }

    .tabset>input:checked+label,
    .tabset2>input:checked+label {
        border-color: #ccc;
        border-bottom: 1px solid #fff;
        margin-bottom: -1px;
        background: #FFF;
    }

}


@media (max-width: 1200px) and (min-width: 992px) {

    .blog-main>h4 {
        height: 65px;
        display: none;
    }

    .tabset2 h4 {
        display: none;
    }

    .tabset>label,
    .tabset>input {
        display: none;
    }

    .tab-panels>.tab-panel:first-child {
        display: block;
    }

    .tabset2>#tab2-2:checked~.row>.tab2,
    .tabset2>#tab2-3:checked~.row>.tab3 {
        display: block;
    }

    .tabset2>label {
        width: calc(50% - 2px);
    }

}

@media (max-width: 991px) {

    .tabset>input[type="radio"] {
        position: absolute;
        left: -200vw;
    }

    .tabset2>input,
    .tabset2>label {
        display: none;
    }

    .tabset .tab-panel {
        display: none;
    }

    .tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
    .tabset>input:nth-child(3):checked~.tab-panels .tab2,
    .tabset>input:nth-child(5):checked~.tab-panels .tab3 {
        display: block;
    }

    .tabset>label {
        width: calc(33.33% - 3px);
    }

}



/* PROJECT DETAIL */
.project-header {
    max-width: 100%;
    max-height: 75vh;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.project-head h1 {
    font-weight: 700;
    margin: 10px 0;
    line-height: 2.6rem;
}

.project-image figcaption {
    font-size: 1em;
    color: #999;
    margin-top: 1rem;
    margin-bottom: 5rem;
}



/* HEADER */
/* @media (max-width: 767px) {  */
nav .text-muted,
nav .text-dark {
    font-size: 11px;
}


.first-container {
    padding-top: 56px;
}

/*

@media (max-width: 575px) { 
    .first-container {
    padding-top: 76px;
    }
}
*/






/* ARTICLE */
h6.category {
    background: #666;
    display: inline-block;
    padding: 10px;
    color: #FFF;
    font-size: 13px;
}

h1.article-title {
    font-weight: 900;
    margin-bottom: 0;
}

time.article-date {
    margin-bottom: 1.5rem;
    color: #999;
    display: inline-block;
}

h5.article-headline {
    font-size: 1.1rem;
    line-height: 1.5em;
}

aside .project_info {
    left: 0;
    top: 10px;
    height: auto;
    margin-left: 0;
}

aside .project_info span {
    padding: 0;
    background: transparent;
}

article hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

article br {
    display: block;
    /* makes it have a width */
    content: "";
    /* clears default height */
    margin-top: 10px;
    /* change this to whatever height you want it */
}

.article-list {
    padding-bottom: 30px;
    border-bottom: 1px solid #999;
    margin-bottom: 30px;
}



/* GALLERY PLUGIN */

.sl-overlay {
    opacity: .95;
}

/* ABOUT PAGE */
.about-page {
    padding-top: 100px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Hero Section */
.about-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-intro {
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.about-logo {
    margin-bottom: 40px;
}

.about-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-logo:hover img {
    transform: scale(1.05);
}

.about-content {
    max-width: 800px;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* Contact Section */
.about-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.contact-link {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* Services Section */
.about-services {
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

#list_services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#list_services li {
    flex: 1;
    min-width: 120px;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

#list_services li:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-link {
    display: block;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: #1a1a1a;
    text-align: center;
    transition: color 0.3s ease;
}

#list_services li:hover .service-link {
    color: #fff;
}

/* Clients Section */
.about-clients {
    margin-bottom: 80px;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.client-tag {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #666;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.client-tag:hover {
    background-color: #e8e8e8;
    border-color: #ddd;
    transform: translateY(-1px);
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-dark {
    background-color: #fafafa;
}

.section:target {
    scroll-margin-top: 100px;
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.portfolio-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.portfolio-card:nth-child(1) {
    animation-delay: 0.1s;
}

.portfolio-card:nth-child(2) {
    animation-delay: 0.2s;
}

.portfolio-card:nth-child(3) {
    animation-delay: 0.3s;
}

.portfolio-card:nth-child(4) {
    animation-delay: 0.4s;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.portfolio-media {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.portfolio-media img {
    width: 100%;
}

/* =========================================
   NEW INDEX REDESIGN - PREMIUM STYLES
   ========================================= */

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: #fff;
    position: relative;
    padding-top: 60px;
    /* Account for fixed nav if needed */
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.logo-main {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sections & Typography */
.section-title {
    font-size: 1.75rem;
    color: #000;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: #000;
}

.tracking-wide {
    letter-spacing: 0.15em;
}

.spacing-sm span {
    margin: 0 5px;
}

/* Featured Projects Cards */
.project-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border: none !important;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    transition: all 0.6s ease;
    width: 100%;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Buttons */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add delays for grid items if possible, or just let them load */
.fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in-up:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in-up:nth-child(5) {
    animation-delay: 0.5s;
}

.fade-in-up:nth-child(6) {
    animation-delay: 0.6s;
}

/* Recent Works */
.recent-card {
    transition: transform 0.3s ease;
}

.recent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Utilities */
.rounded-lg {
    border-radius: 0.8rem !important;
}

.custom-cursor {
    cursor: pointer;
}

.portfolio-card:hover .portfolio-media img {
    transform: scale(1.03);
}

.portfolio-media .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.portfolio-media .embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}

.portfolio-media .embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.portfolio-content {
    padding: 28px;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: #666;
    font-weight: 600;
    margin-bottom: 16px;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.portfolio-client {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.portfolio-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
}

.portfolio-link {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.portfolio-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Footer */
.about-footer {
    padding: 60px 20px;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.footer-contact {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    #list_services li {
        flex: 0 0 calc(50% - 6px);
        min-width: auto;
    }
}

@media screen and (max-width: 768px) {
    .about-page {
        padding-top: 60px;
    }

    .about-hero {
        padding: 40px 20px;
    }

    .about-contact {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .lead-text {
        font-size: 1.3rem;
    }

    .description-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .about-logo img {
        max-width: 150px;
    }

    .lead-text {
        font-size: 1.2rem;
    }

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

    .portfolio-title {
        font-size: 1.3rem;
    }
}

/* CONTACT PAGE */
.contact-page {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    animation: fadeInUp 0.6s ease-out;
}

.contact-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.1;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    word-break: keep-all;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-method {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #666);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    border-color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.method-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-method:hover .method-label {
    color: #666;
}

.method-link {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: color 0.3s ease;
    word-break: break-word;
}

.method-link:hover {
    color: #0066cc;
}

/* Contact Page Responsive */
@media screen and (max-width: 768px) {
    .contact-page {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }

    .contact-hero {
        padding: 40px 20px;
    }

    .contact-intro {
        margin-bottom: 60px;
    }

    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .contact-description {
        font-size: 1.1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .contact-method {
        padding: 35px 25px;
    }

    .method-link {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-method {
        padding: 30px 20px;
    }

    .method-link {
        font-size: 1.1rem;
    }
}

/* ARTICLE LIST PAGE */
.article-list-page {
    padding-top: 100px;
    scroll-behavior: smooth;
}

.article-list-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-intro {
    text-align: center;
    margin-bottom: 60px;
}

.article-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.article-page-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    word-break: keep-all;
}

.article-list {
    margin-top: 40px;
}

.article-list-article {
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-link:hover .article-list-article {
    transform: translateY(-2px);
}

.article-list-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.article-link:hover .article-list-image {
    transform: scale(1.02);
}

.article-list-article .category {
    background-color: #666;
    display: inline-block;
    padding: 10px 15px;
    color: #FFF;
    font-size: 13px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-list-article .article-title {
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 2.5rem;
    color: #1a1a1a;
}

.article-list-article .article-date {
    margin-bottom: 1.5rem;
    color: #999;
    display: block;
    font-size: 0.95rem;
}

.article-list-article .article-headline {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
    word-break: keep-all;
}

.article-list-article .btn {
    transition: all 0.3s ease;
}

.article-link:hover .article-list-article .btn {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* ARTICLE PAGE */
.article-content {
    padding: 20px 0;
    max-width: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.article-header-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    margin-top: 0;
    display: block;
    border-radius: 4px;
}

.article-content .category {
    background-color: #666;
    display: inline-block;
    padding: 10px 15px;
    color: #FFF;
    font-size: 13px;
    margin-bottom: 16px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content .article-title {
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 2.5rem;
    color: #1a1a1a;
}

.article-content .article-date {
    margin-bottom: 1.5rem;
    color: #999;
    display: block;
    font-size: 0.95rem;
}

.article-content .article-headline {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
    word-break: keep-all;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-content h5 {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 400;
}

.article-content h6 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-content h6.small {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    word-break: keep-all;
}

.article-content p.small {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.article-content .question {
    color: #3e71d0;
    font-weight: 500;
}

.article-content .font-weight-bold {
    font-weight: 600;
}

.article-content img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
    height: auto;
    border-radius: 4px;
}

.article-content .embed-responsive {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.article-content .embed-responsive iframe {
    border-radius: 4px;
}

.article-content hr {
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid #e5e5e5;
}

.article-content a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.article-content em {
    font-style: italic;
    color: #666;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .article-list-page {
        padding-top: 80px;
    }

    .article-list-hero {
        padding: 40px 20px;
    }

    .article-intro {
        margin-bottom: 40px;
    }

    .article-page-title {
        font-size: 2.5rem;
    }

    .article-page-description {
        font-size: 1.1rem;
    }

    .article-list-article .article-title {
        font-size: 2rem;
    }

    .article-list-article .article-headline {
        font-size: 1.05rem;
    }

    .article-content .article-title {
        font-size: 2rem;
    }

    .article-content h4 {
        font-size: 1.3rem;
    }

    .article-list-article {
        padding: 15px 0;
    }
}

@media screen and (max-width: 480px) {
    .article-page-title {
        font-size: 2rem;
    }

    .article-list-article .article-title {
        font-size: 1.75rem;
    }

    .article-content .article-title {
        font-size: 1.75rem;
    }

    .article-content h4 {
        font-size: 1.2rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }
}