* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

button,
a,
input[type="submit"],
input[type="button"] {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background: #fef8ed;
    color: #1e1e1e;
    line-height: 1.6;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.article-link {
    display: block;
    transition: transform 0.3s ease;
}

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

.article-link:hover .grid-card,
.article-link:hover .side-card,
.article-link:hover .feature-card {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 3rem;
    border-bottom: 1px solid #ddd;
    background: #fff;
    height: 110px;
    position: relative;
}

.social-icons span {
    margin-right: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
}

.brand p {
    font-size: 0.85rem;
    color: #6c6c6c;
}

.brand .logo {
    height: 120px;
    width: auto;
    display: block;
}

.site-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.site-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
    color: #1e1e1e;
    line-height: 1.2;
}

.site-title p {
    font-size: 1rem;
    color: #6c6c6c;
    margin: 0.25rem 0 0 0;
    font-style: italic;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search Button */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 999;
    transition: opacity 0.3s, transform 0.2s;
    color: #333;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

.search-btn:hover {
    color: #f44336;
    transform: scale(1.1);
}

.search-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 999;
    transition: opacity 0.3s;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
}

.hamburger-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-menu:hover span {
    background: #f44336;
}

body.menu-open {
    overflow: hidden;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    transition: right 0s ease 0.4s, background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.menu-overlay.active {
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: right 0s ease 0s, background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible;
}

.menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    padding: 2rem;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active .menu-panel {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    transition: color 0.3s ease;
}

.menu-close:hover {
    color: #f44336;
}

.menu-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e1e1e;
    font-family: 'Playfair Display', serif;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-category h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #f44336;
    font-weight: 600;
}

.menu-category h3 a {
    color: #f44336;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-category h3 a:hover {
    color: #d32f2f;
}

.menu-category ul {
    list-style: none;
    padding-left: 1rem;
}

.menu-category li {
    margin-bottom: 0.5rem;
}

.menu-category li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.menu-category li a:hover {
    color: #f44336;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    transition: right 0s ease 0.4s, background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.search-overlay.active {
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: right 0s ease 0s, background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible;
}

.search-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: #fff;
    padding: 2rem;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-panel {
    transform: translateX(0);
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: #f44336;
}

.search-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e1e1e;
    font-family: 'Playfair Display', serif;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 1rem;
    color: #999;
}

.search-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: 'Lora', serif;
    transition: border-color 0.3s;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: #f44336;
}

.search-submit-btn {
    background: #f44336;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-submit-btn:hover {
    background: #d32f2f;
}

.search-suggestions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.search-hint {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

/* Search Results Dropdown */
.search-results-dropdown {
    display: none;
    margin-top: 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    scrollbar-width: thin;
    scrollbar-color: #ddd #f5f5f5;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 0 8px 8px 0;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.search-suggestions-list {
    display: flex;
    flex-direction: column;
}

.search-suggestion-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #f8f8f8;
}

.suggestion-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.suggestion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.suggestion-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1e1e1e;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.suggestion-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.suggestion-category {
    font-size: 0.75rem;
    color: #f44336;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-date {
    font-size: 0.75rem;
    color: #999;
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: #999;
}

.search-no-results p {
    margin: 0;
    font-size: 0.95rem;
}

.subscribe-btn {
    background: #f44336;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 2rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.content-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 2rem 3rem 4rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
}

.hero-side .article-link {
    margin: 0;
}

.hero img,
.side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.hero-main {
    position: relative;
}

.hero-main img {
    height: 420px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f44336;
    color: #fff;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-main h2 {
    font-size: 2rem;
    margin-top: 0.75rem;
    font-weight: 700;
}

.hero-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.date {
    color: #777;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.article-meta {
    color: #777;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.article-meta .author {
    font-weight: 500;
    color: #555;
}

.article-meta .date {
    margin-top: 0;
}


.side-card {
    position: relative;
    background: #fff;
    border-radius: 0;
    padding: 0;
    overflow: visible;
    margin: 0;
}

.side-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

.side-card .badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.6rem;
}

.side-card h3 {
    padding: 0.5rem 0.75rem 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.side-card .article-meta {
    padding: 0 0.75rem 0.5rem 0.75rem;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.side-card .date {
    padding: 0;
}

.category-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f44336;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.grid-card {
    background: #fff;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.grid-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.grid-card .badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
}

.grid-card h4,
.grid-card .article-meta {
    padding: 0 1rem;
}

.grid-card h4 {
    padding-top: 1rem;
}

.grid-card .article-meta {
    padding-bottom: 1rem;
}

.grid-card-no-badge h4 {
    padding-top: 1rem;
}

.category-label {
    font-size: 0.75rem;
    color: #f44336;
    text-transform: uppercase;
    margin: 0.75rem 0 0 0;
    display: none;
}

.grid-card .date {
    padding: 0;
}

.newsletter-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background: #f44336;
    color: #fff;
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
}

.newsletter-form button {
    border: none;
    background: #111;
    color: #fff;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: visible;
    padding: 0;
    position: relative;
}

.feature-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
}

.feature-card .badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
}

.feature-card h3,
.feature-card p {
    padding: 0 1rem;
}

.feature-card h3 {
    padding-top: 1rem;
}

.feature-card p:last-child {
    padding-bottom: 1rem;
}


.arts-section .arts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.arts-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 0 1rem 1rem 1rem;
}

.arts-card img {
    width: calc(100% + 2rem);
    margin: 0 -1rem 0 -1rem;
}

.arts-card .category-label {
    margin: 0.75rem 0 0 0;
}

.arts-card h4 {
    margin: 0.5rem 0;
}

.arts-card .date {
    padding: 0;
}

.about-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.site-footer {
    background: #2c2c2c;
    color: #fff;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-brand-logo {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-divider {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-connect h4 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: #f44336;
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    border: none;
}

.footer-form button {
    background: #f44336;
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
}

.footer-columns ul {
    list-style: none;
}

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

/* Category Page Styles */
.category-page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f44336;
}

.category-page-header h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

/* Search Results Page Styles */
.search-results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f44336;
}

.search-results-header h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.75rem;
}

.search-query {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.search-query strong {
    color: #f44336;
    font-weight: 600;
}

.search-count {
    font-size: 0.9rem;
    color: #777;
}

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

.breadcrumb a {
    color: #f44336;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.no-articles {
    text-align: center;
    padding: 4rem 2rem;
}

.no-articles p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: #f44336;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d32f2f;
}

/* Responsive Design */

/* Large Desktop (1440px+) - Default styles apply */

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
    .content-wrapper {
        padding: 2rem 2.5rem 4rem;
    }
    
    .article-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet/Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .content-wrapper {
        padding: 2rem 2rem 4rem;
    }
    
    .top-bar {
        padding: 0.5rem 2rem;
    }
    
    .site-title h1 {
        font-size: 2rem;
    }
    
    .site-title p {
        font-size: 0.95rem;
    }
    
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-main h2 {
        font-size: 1.75rem;
    }
    
    .hero-excerpt {
        font-size: 0.95rem;
    }
    
    .feature-card img {
        height: 300px;
    }
    
    .grid-card img {
        height: 220px;
    }
    
    .newsletter-highlight {
        padding: 1.75rem;
    }
}

/* Tablet Landscape (900px - 1023px) */
@media (max-width: 1023px) {
    .top-bar {
        padding: 0.5rem 1.5rem;
        height: auto;
        min-height: 100px;
    }
    
    .brand .logo {
        height: 100px;
    }
    
    .site-title h1 {
        font-size: 1.8rem;
    }
    
    .site-title p {
        font-size: 0.9rem;
    }
    
    .main-nav {
        padding: 0.75rem 1.5rem;
        gap: 1.25rem;
        font-size: 0.95rem;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem 4rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-main img {
        height: 350px;
    }
    
    .hero-main h2 {
        font-size: 1.6rem;
    }

    .hero-side {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .side-card img {
        height: 200px;
    }

    .article-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .grid-card img {
        height: 200px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-card img {
        height: 280px;
    }
    
    .footer-columns {
        flex-wrap: wrap;
    }
    
    .footer-logo .logo {
        height: 120px;
    }
    
    .menu-panel {
        width: 360px;
    }
    
    .search-panel {
        width: 450px;
    }
    
    .category-page-header h1,
    .search-results-header h1 {
        font-size: 2rem;
    }
}

/* Tablet Portrait (768px - 899px) */
@media (max-width: 899px) {
    .top-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
        height: auto;
        min-height: 80px;
    }
    
    .brand {
        flex-shrink: 0;
    }
    
    .brand .logo {
        height: 80px;
    }
    
    .site-title {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
        padding: 0 1rem;
    }
    
    .site-title h1 {
        font-size: 1.5rem;
    }
    
    .site-title p {
        font-size: 0.85rem;
    }
    
    .header-actions {
        flex-shrink: 0;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .content-wrapper {
        padding: 1.75rem 1.25rem 3.5rem;
    }
    
    .hero {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-main img {
        height: 300px;
    }
    
    .hero-main h2 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .hero-excerpt {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    
    .hero-side {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .side-card img {
        height: 180px;
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .grid-card img {
        height: 200px;
    }
    
    .category-section {
        margin-bottom: 2.5rem;
    }
    
    .feature-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-card img {
        height: 280px;
    }
    
    .newsletter-highlight {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .footer-brand-logo {
        height: 100px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .about-content h3 {
        font-size: 1.75rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .search-panel,
    .menu-panel {
        width: 100%;
        max-width: 100%;
    }
    
    .category-page-header h1,
    .search-results-header h1 {
        font-size: 1.8rem;
    }
    
    .search-query {
        font-size: 1rem;
    }
}

/* Mobile Landscape (600px - 767px) */
@media (max-width: 767px) {
    .top-bar {
        padding: 0.5rem 1rem;
        min-height: 70px;
        flex-wrap: wrap;
    }
    
    .brand .logo {
        height: 70px;
    }
    
    .site-title h1 {
        font-size: 1.3rem;
    }
    
    .site-title p {
        font-size: 0.8rem;
    }
    
    .header-actions {
        gap: 0.75rem;
    }
    
    .search-btn,
    .hamburger-menu {
        width: 36px;
        height: 36px;
    }
    
    .hamburger-menu {
        width: 32px;
        height: 28px;
    }
    
    .main-nav {
        padding: 0.6rem 1rem;
        gap: 0.875rem;
        font-size: 0.85rem;
    }
    
    .content-wrapper {
        padding: 1.5rem 1rem 3rem;
    }
    
    .hero {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-main img {
        height: 260px;
    }
    
    .hero-main h2 {
        font-size: 1.4rem;
    }
    
    .hero-side {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .side-card img {
        height: 200px;
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .grid-card img {
        height: 180px;
    }
    
    .grid-card h4 {
        font-size: 0.95rem;
        padding: 0.875rem 0.875rem 0 0.875rem;
    }
    
    .grid-card .article-meta {
        padding: 0 0.875rem 0.875rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 0.875rem;
    }
    
    .category-section {
        margin-bottom: 2rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .feature-card img {
        height: 260px;
    }
    
    .newsletter-highlight {
        padding: 1.25rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form button {
        padding: 0.75rem;
    }
    
    .arts-section .arts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .site-footer {
        padding: 2.5rem 1.5rem;
    }
    
    .search-panel,
    .menu-panel {
        padding: 1.75rem;
    }
    
    .search-panel h2,
    .menu-panel h2 {
        font-size: 1.6rem;
        margin-bottom: 1.75rem;
    }
    
    .menu-categories {
        gap: 1.75rem;
    }
    
    .menu-category h3 {
        font-size: 1.1rem;
    }
    
    .footer-main {
        padding: 2rem 1.25rem 1.5rem;
        gap: 1.75rem;
    }
    
    .footer-brand-logo {
        height: 90px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-bottom {
        padding: 1.25rem 1.25rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .category-page-header h1,
    .search-results-header h1 {
        font-size: 1.6rem;
    }
}

/* Mobile Portrait (480px - 599px) */
@media (max-width: 599px) {
    .top-bar {
        padding: 0.5rem 0.875rem;
        min-height: 60px;
    }
    
    .brand .logo {
        height: 60px;
    }
    
    .site-title h1 {
        font-size: 1.1rem;
    }
    
    .site-title p {
        font-size: 0.75rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .search-btn,
    .hamburger-menu {
        width: 32px;
        height: 32px;
    }
    
    .hamburger-menu {
        width: 28px;
        height: 24px;
    }
    
    .hamburger-menu span {
        height: 2.5px;
    }
    
    .main-nav {
        padding: 0.5rem 0.875rem;
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .content-wrapper {
        padding: 1.25rem 0.875rem 2.5rem;
    }
    
    .hero-main img {
        height: 220px;
    }
    
    .hero-main h2 {
        font-size: 1.25rem;
    }
    
    .hero-excerpt {
        font-size: 0.9rem;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .side-card h3 {
        font-size: 0.8rem;
        padding: 0.4rem 0.65rem 0 0.65rem;
    }
    
    .side-card .article-meta {
        font-size: 0.7rem;
        padding: 0 0.65rem 0.4rem 0.65rem;
    }
    
    .side-card img {
        height: 180px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .grid-card img {
        height: 220px;
    }
    
    .grid-card h4 {
        font-size: 0.95rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card img {
        height: 240px;
    }
    
    .newsletter-highlight {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }
    
    .arts-section .arts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .categories-list {
        grid-template-columns: 1fr;
    }
    
    .site-footer {
        padding: 2rem 1.25rem;
    }
    
    .footer-logo .logo {
        height: 90px;
    }
    
    .search-panel,
    .menu-panel {
        padding: 1.5rem;
    }
    
    .search-panel h2,
    .menu-panel h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-categories {
        gap: 1.5rem;
    }
    
    .menu-category h3 {
        font-size: 1rem;
    }
    
    .menu-category li {
        margin-bottom: 0.4rem;
    }
    
    .menu-category li a {
        font-size: 0.9rem;
    }
    
    .search-input-wrapper input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .search-submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .search-results-dropdown {
        max-height: 400px;
    }
    
    .search-suggestion-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .suggestion-image {
        width: 60px;
        height: 45px;
    }
    
    .suggestion-content h4 {
        font-size: 0.85rem;
    }
    
    .suggestion-meta {
        gap: 0.5rem;
    }
    
    .suggestion-category,
    .suggestion-date {
        font-size: 0.7rem;
    }
    
    .footer-main {
        padding: 2rem 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .footer-brand-logo {
        height: 80px;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-connect h4 {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
    
    .about-content h3 {
        font-size: 1.4rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .category-page-header h1,
    .search-results-header h1 {
        font-size: 1.5rem;
    }
    
    .search-query {
        font-size: 0.95rem;
    }
    
    .search-count {
        font-size: 0.85rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .top-bar {
        padding: 0.5rem 0.75rem;
        min-height: 55px;
    }
    
    .brand .logo {
        height: 55px;
    }
    
    .site-title h1 {
        font-size: 1rem;
        letter-spacing: 0.05rem;
    }
    
    .site-title p {
        font-size: 0.7rem;
    }
    
    .main-nav {
        padding: 0.5rem 0.75rem;
        gap: 0.625rem;
        font-size: 0.75rem;
    }
    
    .content-wrapper {
        padding: 1rem 0.75rem 2rem;
    }
    
    .hero {
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-main img {
        height: 200px;
    }
    
    .hero-main h2 {
        font-size: 1.15rem;
        margin-top: 0.5rem;
    }
    
    .hero-excerpt {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
    
    .side-card img {
        height: 160px;
    }
    
    .grid-card img {
        height: 200px;
    }
    
    .grid-card h4 {
        font-size: 0.9rem;
        padding: 0.75rem 0.75rem 0 0.75rem;
    }
    
    .grid-card .article-meta {
        padding: 0 0.75rem 0.75rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .feature-card img {
        height: 220px;
    }
    
    .feature-card h3 {
        font-size: 0.95rem;
        padding: 0.875rem 0.875rem 0 0.875rem;
    }
    
    .feature-card p {
        padding: 0 0.875rem;
        font-size: 0.9rem;
    }
    
    .newsletter-highlight {
        padding: 1rem;
        gap: 1.25rem;
    }
    
    .newsletter-highlight h2 {
        font-size: 1.1rem;
    }
    
    .newsletter-highlight p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
    }
    
    .category-section {
        margin-bottom: 1.75rem;
    }
    
    .site-footer {
        padding: 1.75rem 1rem;
    }
    
    .footer-logo .logo {
        height: 80px;
    }
    
    .search-panel,
    .menu-panel {
        padding: 1.25rem;
    }
    
    .search-close,
    .menu-close {
        font-size: 2rem;
        width: 36px;
        height: 36px;
    }
    
    .search-panel h2,
    .menu-panel h2 {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }
    
    .menu-categories {
        gap: 1.25rem;
    }
    
    .menu-category h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-category li a {
        font-size: 0.85rem;
    }
    
    .search-input-wrapper input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .search-input-wrapper .search-icon {
        left: 0.75rem;
    }
    
    .search-submit-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-hint {
        font-size: 0.85rem;
    }
    
    .suggestion-image {
        width: 50px;
        height: 38px;
    }
    
    .suggestion-content h4 {
        font-size: 0.8rem;
    }
    
    .suggestion-category,
    .suggestion-date {
        font-size: 0.65rem;
    }
    
    .category-page-header h1,
    .search-results-header h1 {
        font-size: 1.35rem;
    }
    
    .search-query {
        font-size: 0.9rem;
    }
    
    .search-count {
        font-size: 0.8rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .no-articles p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .footer-main {
        padding: 1.75rem 0.875rem 1.25rem;
        gap: 1.25rem;
    }
    
    .footer-brand-logo {
        height: 70px;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-connect h4 {
        font-size: 0.95rem;
    }
    
    .footer-social-icon {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom {
        padding: 0.875rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .about-content h3 {
        font-size: 1.25rem;
    }
    
    .about-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Landscape Orientation Adjustments for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-main img {
        height: 180px;
    }
    
    .side-card img {
        height: 140px;
    }
    
    .grid-card img {
        height: 160px;
    }
    
    .feature-card img {
        height: 180px;
    }
    
    .search-panel,
    .menu-panel {
        overflow-y: auto;
        max-height: 100vh;
    }
}

