/**
 * Public Site - Modern Clean CSS
 * =====================================================
 */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #64748b;
    --accent: #f59e0b;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --bg-dark: #0f172a;
    
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    
    --font-family: 'Heebo', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s ease;
    
    --container-width: 1280px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-body);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

/* =====================================================
   UTILITIES
   ===================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--bg-dark);
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-social a,
.header-info a {
    color: var(--text-muted);
    margin-left: 15px;
    transition: var(--transition);
}

.header-social a:hover,
.header-info a:hover {
    color: white;
}

.header-info a {
    margin-left: 0;
    margin-right: 20px;
}

.header-info i {
    margin-left: 5px;
}

.header-main {
    padding: 15px 0;
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    justify-content: center;
}

.nav-list a {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

.header-actions {
    display: flex;
    gap: 10px;
}

.search-toggle,
.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-light);
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover,
.mobile-menu-toggle:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 18px;
    font-family: inherit;
    transition: var(--transition);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-form button {
    width: 54px;
    height: 54px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.search-close {
    background: var(--bg-light) !important;
    color: var(--text-secondary) !important;
}

.search-suggestions {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition);
}

.search-suggestion-item:hover {
    background: var(--bg-light);
}

.search-suggestion-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.search-suggestion-title {
    font-weight: 600;
    color: var(--text-primary);
}

.search-suggestion-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */

.breadcrumbs {
    background: var(--bg-light);
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-right: 8px;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--text-secondary);
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list li:last-child span {
    color: var(--text-primary);
    font-weight: 500;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */

main {
    min-height: 60vh;
}

.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-right: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-link {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-link:hover {
    gap: 10px;
}

/* =====================================================
   ARTICLE CARDS
   ===================================================== */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.article-card-content {
    padding: 20px;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.article-card-title a {
    color: var(--text-primary);
}

.article-card-title a:hover {
    color: var(--primary);
}

.article-card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.article-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-card-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.article-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Featured Article (Large) */
.article-featured {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 21/9;
}

.article-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
}

.article-featured-category {
    background: var(--accent);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.article-featured-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-featured-title a {
    color: white;
}

.article-featured-excerpt {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 20px;
}

.article-featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* =====================================================
   SIDEBAR
   ===================================================== */

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

/* Popular Articles Widget */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-item {
    display: flex;
    gap: 15px;
}

.popular-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-item-content {
    flex: 1;
    min-width: 0;
}

.popular-item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.popular-item-title a {
    color: var(--text-primary);
}

.popular-item-title a:hover {
    color: var(--primary);
}

.popular-item-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Tags Cloud Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 13px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: white;
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    color: var(--text-secondary);
    font-weight: 500;
}

.category-item a:hover {
    color: var(--primary);
}

.category-count {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* =====================================================
   PAGINATION
   ===================================================== */

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    background: var(--bg-white);
    color: var(--text-secondary);
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary);
    color: white;
}

.pagination .active {
    background: var(--primary);
    color: white;
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    margin-top: 60px;
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-right: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-light);
}

.newsletter-message {
    margin-top: 10px;
    font-size: 13px;
}

.footer-tags {
    background: rgba(0,0,0,0.2);
    padding: 30px 0;
}

.footer-tags h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-tags .tags-cloud .tag {
    background: rgba(255,255,255,0.1);
    color: var(--text-muted);
}

.footer-tags .tags-cloud .tag:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-credit i {
    color: #ef4444;
}

/* =====================================================
   BACK TO TOP
   ===================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-widget {
        flex: 1;
        min-width: 280px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-white);
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1001;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 5px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-featured {
        aspect-ratio: 16/12;
    }
    
    .article-featured-title {
        font-size: 22px;
    }
    
    .article-featured-overlay {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-title {
        padding-right: 0;
    }
    
    .section-title::before {
        display: none;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-up {
    animation: slideUp 0.5s ease;
}

/* ===========================================
   Home Page Widgets
   =========================================== */
.home-page .hw-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: fit-content;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Heebo", sans-serif;
}
.home-page .hw-header-text {
    width: 80%;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}
.home-page .hw-container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}
.home-page .hw-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
.home-page .hw-sml-txt {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}
.home-page .hw-sml-txt:hover {
    color: #666;
}
.home-page .hw-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
    gap: 24px;
    margin: 0 auto;
}
.home-page .hw-card-tall {
    grid-column: span 2;
    grid-row: span 4;
}
.home-page .hw-card-wide {
    grid-column: span 4;
    grid-row: span 2;
}
.home-page .hw-card-square {
    grid-column: span 2;
    grid-row: span 2;
}
.home-page .hw-card {
    position: relative;
    background: #d9d9d9;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}
.home-page .hw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.home-page .hw-card .hw-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-page .hw-card .hw-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.home-page .hw-card .hw-card-content {
    position: absolute;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}
.home-page .hw-card .hw-card-content.hw-bottom-right {
    bottom: 0;
    right: 0;
    left: 0;
}
.home-page .hw-card .hw-title-lg {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}
.home-page .hw-article-card {
    position: relative;
    border: #443764 3px solid;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    color: inherit;
}
.home-page .hw-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.home-page .hw-article-card.hw-green {
    border-color: #005C51;
}
.home-page .hw-article-card .hw-image {
    height: 50%;
    background: #F0F0F0;
    position: absolute;
    margin: 10px;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
}
.home-page .hw-article-card .hw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-page .hw-info {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    padding: 10px 20px;
    gap: 10px;
    width: 90%;
    box-sizing: border-box;
}
.home-page .hw-badge {
    background: #443764;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: #F0F0F0;
    position: absolute;
    z-index: 10;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-page .hw-badge.hw-green {
    background: #005C51;
}
.home-page .hw-badge svg {
    display: block;
}
.home-page .hw-category {
    background: #443764;
    border-radius: 24px;
    width: fit-content;
    padding: 3px 12px;
    font-size: 14px;
    color: #F0F0F0;
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    white-space: nowrap;
}
.home-page .hw-category.hw-green {
    background: #005C51;
}
.home-page .hw-card-title {
    width: 100%;
    font-size: 20px;
    color: black;
    font-weight: 500;
    line-height: 1.3;
}
.home-page .hw-article-description {
    font-size: 14px;
    color: #6E6E6E;
    overflow: hidden;
    margin: 0;
    width: 70%;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.home-page .hw-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}
.home-page .hw-meta-data {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    color: #6E6E6E;
}
.home-page .hw-meta-data:not(:last-child) {
    padding-left: 15px;
    border-left: #6E6E6E 1px solid;
}
.home-page .hw-meta-data p {
    margin: 0;
}
.home-page .hw-meta-data i {
    font-size: 13px;
    color: #6E6E6E;
}
/* Wide Card */
.home-page .hw-article-card.hw-card-wide {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.home-page .hw-article-card.hw-card-wide .hw-image {
    position: relative;
    height: 95% !important;
    width: 40%;
    background: #F0F0F0;
    margin: 5px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.home-page .hw-article-card.hw-card-wide .hw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-page .hw-article-card.hw-card-wide .hw-wide-content {
    width: 58%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-end;
    padding: 15px 15px 15px 5px;
    box-sizing: border-box;
}
.home-page .hw-article-card.hw-card-wide .hw-info {
    position: relative;
    align-items: flex-start;
    padding: 0;
    width: 100%;
    bottom: auto;
}
.home-page .hw-article-card.hw-card-wide .hw-article-description {
    width: 90%;
}
.home-page .hw-mobile-only {
    display: none !important;
}
.home-page .hw-desktop-only {
    display: flex !important;
}
/* Row Containers (Strips) */
.home-page .hw-row-container {
    margin-top: 10px;
}
.home-page .hw-cards-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.home-page .hw-cards-container .hw-article-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    max-height: 300px;
    justify-content: space-between;
}
.home-page .hw-cards-container .hw-article-card .hw-image {
    position: relative;
    height: 50%;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}
.home-page .hw-cards-container .hw-article-card .hw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-page .hw-cards-container .hw-article-card .hw-info {
    position: relative;
    bottom: auto;
    padding: 10px 20px 15px;
    width: 100%;
}
.home-page .hw-cards-container .hw-card.hw-card-tall {
    flex: 1;
    min-width: 0;
    min-height: 450px;
}
/* Ad Container */
.home-page .hw-ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background: #d9d9d9;
    border-radius: 24px;
}
.home-page .hw-ad-text {
    font-size: 34px;
    font-weight: 600;
    color: #F0F0F0;
    margin: 0;
}
/* Responsive */
@media (max-width: 700px) {
    .home-page .hw-layout {
        gap: 16px;
        padding: 20px 16px;
    }
    .home-page .hw-header-text {
        width: 100%;
    }
    .home-page .hw-title {
        font-size: 20px;
    }
    .home-page .hw-grid-container {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }
    .home-page .hw-card-tall,
    .home-page .hw-card-square {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
    .home-page .hw-card-tall {
        min-height: 400px;
    }
    .home-page .hw-article-card.hw-card-wide {
        grid-column: span 1;
        grid-row: span 1;
        flex-direction: column;
        min-height: 400px;
    }
    .home-page .hw-article-card.hw-card-wide .hw-image {
        width: calc(100% - 20px) !important;
        height: 200px !important;
        margin: 10px;
    }
    .home-page .hw-article-card.hw-card-wide .hw-wide-content {
        width: 100%;
        height: auto;
        padding: 10px 20px 20px;
    }
    .home-page .hw-article-card.hw-card-wide .hw-info {
        width: 100%;
        padding: 10px 0;
    }
    .home-page .hw-article-card.hw-card-wide .hw-article-description {
        width: 100%;
    }
    .home-page .hw-mobile-only {
        display: flex !important;
    }
    .home-page .hw-desktop-only {
        display: none !important;
    }
    .home-page .hw-cards-container {
        flex-direction: column;
        gap: 16px;
    }
    .home-page .hw-cards-container .hw-article-card {
        max-height: none;
        min-height: 300px;
    }
    .home-page .hw-cards-container .hw-card.hw-card-tall {
        min-height: 400px;
    }
    .home-page .hw-card-title {
        font-size: 18px;
    }
    .home-page .hw-card .hw-title-lg {
        font-size: 18px;
    }
    .home-page .hw-meta-data:not(:last-child) {
        padding-left: 10px;
    }
    .home-page .hw-ad-container {
        height: 80px;
    }
    .home-page .hw-ad-text {
        font-size: 24px;
    }
}
@media (max-width: 400px) {
    .home-page .hw-grid-container {
        gap: 12px;
    }
    .home-page .hw-card-title {
        font-size: 16px;
    }
    .home-page .hw-card .hw-title-lg {
        font-size: 16px;
    }
    .home-page .hw-meta-data {
        font-size: 12px;
    }
}
