/* Last Minute Vakantie - Editorial / Magazine Design */
/* Distinct from lastminuteplanner.be: dark minimal header, left sidebar, sharp geometry, different typography */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #B800FF;
    --secondary-color: #FF9BB4;
    --accent-color: #FF9BB4;
    --text-color: #1a1a1a;
    --text-muted: #555;
    --bg-color: #faf9f7;
    --bg-card: #ffffff;
    --border-color: #e8e6e3;
    --header-bg: #0d0d0d;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Minimal dark, no gradient */
.main-header {
    background: var(--header-bg);
    color: white;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

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

.logo a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-menu > ul > li {
    position: relative;
}

.main-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.main-menu a:hover {
    color: white;
    border-bottom-color: var(--secondary-color);
}

.menu-dropdown > a::after {
    content: ' ›';
    font-size: 0.85em;
    opacity: 0.7;
}

.menu-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--header-bg);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.1);
}

.menu-dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

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

.menu-dropdown-content a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: rgba(255,255,255,0.85);
    border-bottom: none;
}

.menu-dropdown-content a:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    border-bottom: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Layout: Main content left, sidebar right (conventional), sidebar compact */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 2rem;
    align-items: start;
}

.content-area {
    flex: 1;
}

/* Hero - Full-width left-aligned, geometric accent */
.hero-section {
    background: var(--text-color);
    color: white;
    padding: 4rem 0 5rem;
    margin: 0 -24px 3rem;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 120px;
    background: var(--primary-color);
    transform: skewY(-3deg);
    transform-origin: bottom right;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.85;
    font-weight: 400;
}

/* Highlighted Article - Border accent, sharp corners */
.highlighted-article {
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-card);
    overflow: hidden;
}

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

.highlighted-article-image {
    width: 100%;
    overflow: hidden;
}

.highlighted-article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 380px;
}

.highlighted-article-content {
    padding: 1.75rem 2rem;
}

.highlighted-article-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.highlighted-article-title:hover {
    color: var(--primary-color);
}

.highlighted-article-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section titles - Underline accent */
.main-categories,
.latest-posts,
.popular-posts,
.tags-section {
    margin-bottom: 3rem;
}

.main-categories h2,
.latest-posts h2,
.popular-posts h2,
.tags-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

/* Categories - Masonry-style grid (distinct from lastminuteplanner's uniform cards) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(184,0,255,0.12);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 1.5rem;
    min-height: 100%;
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Posts - List-style with left border */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--secondary-color);
    transition: border-color 0.2s;
}

.post-card:hover {
    border-left-color: var(--primary-color);
}

.post-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.post-content {
    padding: 1.25rem;
}

.post-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.post-category a {
    color: var(--primary-color);
    text-decoration: none;
}

.post-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.post-card:hover .post-content h3 {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Sidebar - Left, minimal cards */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 80px;
}

.sidebar .widget {
    padding: 1.25rem;
}

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

.widget {
    background: var(--bg-card);
    padding: 1.25rem;
    border: 1px solid var(--border-color);
}

.widget h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget-thumbnail {
    width: 56px;
    height: 56px;
    object-fit: cover;
    float: left;
    margin-right: 1rem;
}

.widget-title {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Popular posts - Compact list */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.popular-post-item a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.popular-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.popular-post-item:hover .popular-content h4 {
    color: var(--primary-color);
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Tags - Outlined style */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.35rem 0.75rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}

.tag-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Ad widgets */
.ad-widget {
    position: relative;
    text-align: center;
}

.ad-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.ad-promo {
    position: relative;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.ad-promo-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ad-promo-logo {
    display: block;
    max-width: 120px;
    max-height: 44px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.ad-promo-text {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ad-promo-btn, .ad-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.ad-promo-btn:hover, .ad-button:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

.ad-image { max-width: 100%; height: auto; margin-bottom: 1rem; }
.ad-title { color: var(--primary-color); margin-bottom: 0.5rem; font-weight: 600; }
.ad-text { color: var(--text-muted); margin-bottom: 1rem; }

/* Page intro */
.page-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Team */
.team-grid { display: flex; flex-direction: column; gap: 2rem; }

.team-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.team-card-image {
    flex: 0 0 180px;
    width: 180px;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.team-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-color);
}

.team-card-content {
    flex: 1;
    padding: 1.5rem 2rem;
}

.team-card-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.team-card-role { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.team-card-description { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.75rem; }

.team-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-tag {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Companies */
.companies-list { display: flex; flex-direction: column; gap: 1rem; }

.company-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.company-widget-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    flex-wrap: wrap;
}

.company-widget-logo img {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
}

.company-widget-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.company-widget-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.company-widget-toggle:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

.company-widget-details {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border-color);
}

.company-widget-details[hidden] { display: none; }
.company-detail-block { padding-top: 1rem; }
.company-detail-block h3 { font-size: 1rem; color: var(--primary-color); margin-bottom: 0.5rem; font-weight: 600; }
.company-tag {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.company-website-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.company-website-btn:hover {
    background: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
}

/* Category page */
.category-header { margin-bottom: 2rem; }
.category-image {
    width: 100%;
    max-width: 100%;
    height: 360px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.category-description {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
    line-height: 1.75;
}

.category-tags {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.category-tags h3 { color: var(--primary-color); margin-bottom: 1rem; font-weight: 600; }
.tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Posts list - Horizontal cards */
.posts-list { display: flex; flex-direction: column; gap: 1.5rem; }

.post-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    transition: border-color 0.2s;
}

.post-item:hover {
    border-left-color: var(--primary-color);
}

.post-item a {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.post-item-image {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
}

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

.post-item-content {
    padding: 1.5rem;
    flex: 1;
}

.post-item-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.post-item:hover .post-item-content h2 {
    color: var(--primary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination-ellipsis { padding: 0.5rem; }

/* Single post */
.single-post {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.post-header { margin-bottom: 2rem; }
.post-header h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 1rem 0;
    line-height: 1.3;
}

.post-meta { color: var(--text-muted); font-size: 0.9rem; display: flex; gap: 1rem; }

.post-feature-image { margin-bottom: 2rem; overflow: hidden; }
.post-feature-image img { width: 100%; display: block; }

.post-content {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.post-content p { margin-bottom: 1rem; }
.post-content img { max-width: 100%; height: auto; }

.post-tags, .post-categories {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-tags h3, .post-categories h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-categories ul { list-style: none; }
.post-categories li { margin-bottom: 0.5rem; }
.post-categories a { color: var(--primary-color); text-decoration: none; font-weight: 500; }
.post-categories a:hover { text-decoration: underline; }

/* Post navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    gap: 1rem;
}

.nav-link {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    text-decoration: none;
    color: var(--text-color);
    transition: border-color 0.2s;
}

.nav-link:hover {
    border-left-color: var(--primary-color);
}

.nav-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.nav-title { font-weight: 600; color: var(--primary-color); }
.nav-next { text-align: right; }

/* Static pages */
.static-page {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.static-page h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.static-content h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.static-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.static-content li { margin-bottom: 0.5rem; }

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-details {
    background: var(--bg-card);
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--primary-color);
}

.contact-form, .advertising-form {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover {
    background: var(--secondary-color);
    color: var(--text-color);
}

.advertising-options { display: grid; gap: 1.5rem; margin: 2rem 0; }
.ad-option {
    background: var(--bg-card);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
}

.ad-option h3 { color: var(--primary-color); margin-bottom: 0.75rem; font-weight: 600; }
.ad-option ul { margin-left: 1.5rem; margin-top: 0.5rem; }

/* Alerts */
.alert { padding: 1rem 1.5rem; margin-bottom: 2rem; font-weight: 500; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Footer - Light with accent strip (opposite of dark lastminuteplanner) */
.main-footer {
    background: var(--bg-card);
    margin-top: 4rem;
    border-top: 4px solid var(--primary-color);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.5rem; }
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Main content min-height */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1rem;
    }
    
    .contact-content { grid-template-columns: 1fr; }
    .post-item a { flex-direction: column; }
    .post-item-image { width: 100%; height: 220px; }
    .hero-section { margin: 0 -24px 2rem; }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        padding: 1rem;
        border-bottom: 2px solid var(--primary-color);
    }
    
    .main-menu.active { display: block; }
    .main-menu ul { flex-direction: column; gap: 1rem; }
    .menu-toggle { display: flex; }
    
    .menu-dropdown-content {
        position: static;
        display: block;
        background: rgba(255,255,255,0.05);
        margin-top: 0.5rem;
        margin-left: 1rem;
        border: none;
    }
    
    .menu-dropdown-content a {
        border-bottom: none;
    }
    
    .hero-content h2 { font-size: 1.75rem; }
    .categories-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    
    .team-card { flex-direction: column; }
    .team-card-image { flex: none; width: 100%; aspect-ratio: 1; max-width: 200px; margin: 0 auto; }
    
    .post-navigation { flex-direction: column; }
    .nav-next { text-align: left; }
}
