/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #FF8C14;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #cc6f0f;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 3px solid #FF8C14;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    padding: 1.2rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #FF8C14;
    font-weight: 700;
    margin: 0;
}

.logo a {
    color: #FF8C14;
}

.logo a:hover {
    color: #cc6f0f;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav > ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav > ul > li {
    position: relative;
}

.nav > ul > li > a {
    color: #333;
    font-weight: 600;
    padding: 1.5rem 1.3rem;
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav > ul > li > a:hover,
.nav > ul > li.has-dropdown:hover > a {
    background-color: #f8f9fa;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-top: 3px solid #FF8C14;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: #333;
    padding: 1rem 1.5rem;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-transform: capitalize;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #FF8C14;
    padding-left: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
}

.search-toggle {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.7rem;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    color: #FF8C14;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.search-box {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
}

.search-box.active {
    display: block;
}

.search-box form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.search-box button {
    padding: 0.75rem 2rem;
    background: #FF8C14;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.search-box button:hover {
    background: #cc6f0f;
}

/* Main Content */
.main {
    min-height: 70vh;
    padding: 0;
}

/* Breadcrumb Bar */
.breadcrumb-bar {
    background: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-text {
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb-text strong {
    color: #333;
}

/* Home Layout */
.home-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    padding: 2rem 0;
}

.main-content {
    min-width: 0;
}

.home-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Sidebar Sections */
.sidebar-section {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #FF8C14;
}

/* Latest Posts Section */
.latest-posts-section {
    margin-bottom: 3rem;
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 500px;
}

.post-cards-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.post-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.post-card-large {
    height: 100%;
}

.post-card-small {
    height: 100%;
}

.post-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.post-card-small .post-overlay {
    padding: 1.5rem;
}

.post-title-overlay {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.post-title-overlay a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.post-title-overlay a:hover {
    color: #FF8C14;
}

.post-card-small .post-title-overlay {
    font-size: 1.1rem;
}

.post-meta-overlay {
    display: flex;
    gap: 1rem;
    color: #fff;
    font-size: 0.85rem;
}

.post-category {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 1rem;
}

.post-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.post-content h3 a {
    color: #333;
}

.post-content h3 a:hover {
    color: #FF8C14;
}

.post-meta {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    gap: 1rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5468 100%);
    border-radius: 0;
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FF8C14;
}

.cta-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background: #FF8C14;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.cta-button:hover {
    background: #cc6f0f;
    color: #fff;
}

/* Random Posts Widget */
.random-posts {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.random-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.random-post-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.random-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.random-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.random-post-thumb:hover img {
    transform: scale(1.1);
}

.random-post-content {
    flex: 1;
}

.random-post-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.random-post-content h4 a {
    color: #333;
}

.random-post-content h4 a:hover {
    color: #FF8C14;
}

.random-post-content .post-meta {
    font-size: 0.75rem;
    color: #999;
}

/* Advertisement Box */
.ad-box {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-placeholder {
    width: 300px;
    height: 250px;
    background: #f5f5f5;
    border: 2px dashed #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #999;
    text-align: center;
}

.ad-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ad-placeholder span {
    font-size: 0.9rem;
}

/* Category Sections Grid */
.category-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-column {
    background: #fff;
    border-top: 3px solid #FF8C14;
    padding: 0;
}

.category-column-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    padding: 1.5rem 0 1rem 0;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

/* Main Featured Article in Category */
.category-main-article {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.category-main-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.category-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-main-image img:hover {
    transform: scale(1.05);
}

.category-main-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.category-main-content h3 a {
    color: #333;
}

.category-main-content h3 a:hover {
    color: #FF8C14;
}

.category-main-content .post-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #666;
}

.category-main-content .meta-by {
    text-transform: uppercase;
    font-weight: 500;
}

.category-main-content .meta-date {
    text-transform: uppercase;
}

.category-main-content .excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

/* Small Articles Below */
.category-small-articles {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-small-article {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.category-small-article:last-child {
    border-bottom: none;
}

.category-small-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
}

.category-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-small-image img:hover {
    transform: scale(1.05);
}

.category-small-content {
    flex: 1;
}

.category-small-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.category-small-content h4 a {
    color: #333;
}

.category-small-content h4 a:hover {
    color: #FF8C14;
}

.category-small-content .post-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: #666;
}

.category-small-content .meta-by {
    text-transform: uppercase;
    font-weight: 500;
}

.category-small-content .meta-date {
    text-transform: uppercase;
}

/* Responsive for Category Grid */
@media (max-width: 992px) {
    .category-sections-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Old Category Sections (Deprecated) */
.category-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-block {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 1.5rem;
}

.category-block .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF8C14;
}

.category-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-article {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-thumb {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-info h3 a {
    color: #333;
}

.article-info h3 a:hover {
    color: #FF8C14;
}

.article-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #FF8C14;
}

/* Featured Articles */
.featured-section {
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.featured-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-content {
    padding: 1.5rem;
}

.featured-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.featured-content p {
    color: #666;
    margin-bottom: 1rem;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-content {
    padding: 1rem;
}

.article-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

/* Category Badge */
.category-badge {
    display: inline-block;
    background: #FF8C14;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Meta Information */
.meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.category-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.category-item:hover {
    border-color: #FF8C14;
    background: #fff;
}

.category-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.category-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Article Detail Page */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    padding: 2rem 0;
}

.article-detail {
    max-width: 100%;
    min-width: 0;
}

.article-header {
    margin-bottom: 2rem;
}

.breadcrumb {
    color: #666;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.article-image {
    margin-bottom: 2rem;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #FF8C14;
}

.latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-post {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content {
    flex: 1;
    min-width: 0;
}

.sidebar-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.sidebar-post-content h4 a {
    color: #333;
}

.sidebar-post-content h4 a:hover {
    color: #FF8C14;
}

.sidebar-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FF8C14;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.subcategories {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.subcategory-link {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.subcategory-link:hover {
    background: #FF8C14;
    color: #fff;
    border-color: #FF8C14;
}

/* Search Box */
.search-box {
    margin-bottom: 2rem;
}

.search-box form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-box button {
    padding: 0.75rem 2rem;
    background: #FF8C14;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.search-box button:hover {
    background: #cc6f0f;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: #FF8C14;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #FF8C14;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FF8C14;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer-bottom p {
    margin: 0;
}

.developer-credit {
    font-weight: 500;
}

.developer-credit a {
    color: #FF8C14;
    font-weight: 700;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .home-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .home-sidebar,
    .article-sidebar {
        position: relative;
        top: 0;
    }

    .category-sections {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest-posts-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .post-cards-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .logo {
        order: 1;
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .header-actions {
        order: 3;
        padding: 0.5rem 0;
    }

    .nav {
        display: none !important;
        order: 4;
        width: 100%;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex !important;
    }

    .nav > ul {
        flex-direction: column;
        width: 100%;
    }

    .nav > ul > li {
        border-bottom: 1px solid #e5e5e5;
    }

    .nav > ul > li > a {
        padding: 1rem 1.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #FF8C14;
        margin-left: 1rem;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .latest-posts-grid,
    .category-sections {
        grid-template-columns: 1fr;
        height: auto;
    }

    .post-cards-stack {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .category-badge {
        display: none;
    }

    .subcategories {
        display: none;
    }

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

    .cta-title {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
