.page-blog {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main */
    background-color: #0D0E12; /* Background */
}

.page-blog__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden;
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
    border-radius: 10px;
}

.page-blog__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    color: #FFA53A; /* Auxiliary color for emphasis */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog__description {
    font-size: 1.1em;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 30px;
}

.page-blog__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog__btn-primary,
.page-blog__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6;
    border: none;
}

.page-blog__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog__btn-secondary {
    background: none;
    color: #FFA53A; /* Auxiliary color */
    border: 2px solid #FFA53A;
}

.page-blog__btn-secondary:hover {
    background: #FFA53A;
    color: #0D0E12;
}

.page-blog__section-title {
    font-size: 2.5em;
    color: #FFA53A; /* Auxiliary color */
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-blog__section-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 1.1em;
    color: #FFF3E6;
}

.page-blog__posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog__post-card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #A84F0C; /* Border */
}

.page-blog__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFB04D; /* Glow */
}

.page-blog__post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-blog__post-content {
    padding: 20px;
}

.page-blog__post-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog__post-title a {
    color: #FFA53A; /* Auxiliary color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
    color: #FFB04D; /* Glow */
}

.page-blog__post-meta {
    font-size: 0.9em;
    color: #FFF3E6;
    margin-bottom: 15px;
}

.page-blog__post-excerpt {
    font-size: 1em;
    color: #FFF3E6;
    margin-bottom: 20px;
}

.page-blog__read-more {
    color: #FFA53A; /* Auxiliary color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-blog__read-more:hover {
    color: #FFB04D; /* Glow */
    text-decoration: underline;
}

.page-blog__view-all-cta {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-blog__categories-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.page-blog__categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-blog__category-item {
    background-color: #17191F; /* Card BG */
    color: #FFF3E6;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #A84F0C; /* Border */
}

.page-blog__category-item:hover {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-blog__why-follow-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    color: #FFF3E6;
}

.page-blog__why-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-blog__why-list li {
    background-color: #17191F;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #FFA53A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__why-list li strong {
    color: #FFA53A;
}

.page-blog__conclusion {
    font-size: 1.1em;
    text-align: center;
    margin-top: 40px;
    color: #FFF3E6;
}

.page-blog__featured-video-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.page-blog__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #A84F0C;
}

.page-blog__featured-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-blog__video-description {
    font-size: 1.1em;
    color: #FFF3E6;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-blog__faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.page-blog__faq-list {
    margin-top: 30px;
}

.page-blog__faq-item {
    background-color: #17191F; /* Card BG */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #A84F0C; /* Border */
}

.page-blog__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #2a2c34;
    color: #FFA53A; /* Auxiliary color */
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1em;
    list-style: none;
    transition: background-color 0.3s ease;
}

.page-blog__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for details tag */
}

.page-blog__faq-question:hover {
    background-color: #3b3d45;
}

.page-blog__faq-qtext {
    flex-grow: 1;
}

.page-blog__faq-toggle {
    font-size: 1.5em;
    margin-left: 10px;
    color: #FFF3E6;
}

.page-blog__faq-item[open] .page-blog__faq-question {
    background-color: #D96800; /* Deep Orange */
    color: #FFF3E6;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
    color: #FFF3E6;
}

.page-blog__faq-answer {
    padding: 15px 20px 20px 20px;
    background-color: #17191F; /* Card BG */
    color: #FFF3E6;
    font-size: 1em;
}

.page-blog__cta-section {
    background-color: #17191F; /* Card BG */
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #A84F0C;
}

.page-blog__cta-title {
    font-size: 2.2em;
    color: #FFA53A;
    margin-bottom: 15px;
}

.page-blog__cta-description {
    font-size: 1.1em;
    color: #FFF3E6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog__posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-blog__description,
    .page-blog__section-intro,
    .page-blog__video-description,
    .page-blog__cta-description {
        font-size: 1em;
    }

    .page-blog__section-title,
    .page-blog__cta-title {
        font-size: 2em;
    }

    .page-blog__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Ensure small top padding */
    }

    .page-blog__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog__btn-primary,
    .page-blog__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-blog__posts-grid,
    .page-blog__categories-section,
    .page-blog__why-follow-section,
    .page-blog__featured-video-section,
    .page-blog__faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog__post-card,
    .page-blog__category-item,
    .page-blog__why-list li,
    .page-blog__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog video,
    .page-blog__featured-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }

    .page-blog__content-area {
        padding: 20px 15px;
    }
}