/**
 * Cluster Templates Styles
 *
 * @package INUV247-Child
 * @version 1.0.0
 */

/* ========================================
   CLUSTER NAVIGATION & FILTERS
   ======================================== */

.cluster-nav-title,
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
}

.section-title i {
    color: #ff6b6b;
    font-size: 20px;
}

/* Cluster Filter Tabs */
.cluster-filter-tabs,
.event-filter-tabs,
.resource-filter-tabs,
.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.cluster-tab,
.event-tab,
.resource-tab,
.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cluster-tab:hover,
.event-tab:hover,
.resource-tab:hover,
.gallery-tab:hover {
    background: #fff;
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.15);
}

.cluster-tab.active,
.event-tab.active,
.resource-tab.active,
.gallery-tab.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-color: #ff6b6b;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.cluster-tab i,
.event-tab i,
.resource-tab i,
.gallery-tab i {
    font-size: 16px;
}

.cluster-count,
.gallery-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.cluster-tab.active .cluster-count,
.gallery-tab.active .gallery-count {
    background: rgba(255, 255, 255, 0.25);
}

/* Cluster Description */
.cluster-description {
    padding: 16px 20px;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #0d47a1;
    line-height: 1.6;
}

.cluster-description i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========================================
   CLUSTER GRID OVERVIEW
   ======================================== */

.cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.cluster-card {
    display: block;
    padding: 24px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cluster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cluster-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.cluster-card:hover::before {
    transform: scaleX(1);
}

.cluster-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 24px;
}

.cluster-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.cluster-card-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cluster-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.cluster-card-count {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cluster-card-arrow {
    color: #ff6b6b;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cluster-card:hover .cluster-card-arrow {
    transform: translateX(4px);
}

.cluster-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #e3f2fd;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #2196f3;
    margin-left: 8px;
}

/* ========================================
   BLOG STATS
   ======================================== */

.blog-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.blog-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
}

.blog-stat-item i {
    font-size: 32px;
    color: #ff6b6b;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

/* Popular Posts List */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-post-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popular-post-item:hover {
    border-color: #ff6b6b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.popular-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
}

.popular-content {
    flex: 1;
}

.popular-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.popular-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-title a:hover {
    color: #ff6b6b;
}

.popular-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #6c757d;
}

.popular-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========================================
   EVENT TIMELINE
   ======================================== */

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.event-timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.event-timeline-item:hover {
    border-color: #ff6b6b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.event-date-badge {
    flex-shrink: 0;
    width: 80px;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 4px;
}

.event-content {
    flex: 1;
    display: flex;
    gap: 20px;
}

.event-thumbnail {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.event-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-timeline-item:hover .event-thumbnail img {
    transform: scale(1.05);
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: #ff6b6b;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6c757d;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-type-badge {
    display: inline-flex;
    padding: 4px 12px;
    background: #e3f2fd;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #2196f3;
}

.event-excerpt {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff6b6b;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.event-read-more:hover {
    gap: 10px;
}

/* Event Services Highlight */
.event-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.service-highlight-card {
    padding: 24px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-highlight-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 28px;
}

.service-highlight-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-highlight-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #ff6b6b;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 4px;
}

/* ========================================
   RESOURCES CARDS
   ======================================== */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.resource-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.resource-card.featured {
    border-color: #ffd700;
}

.resource-card-header {
    position: relative;
}

.resource-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.resource-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-thumbnail img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.resource-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-meta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.resource-file-type {
    display: inline-flex;
    padding: 4px 10px;
    background: #e3f2fd;
    color: #2196f3;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.resource-file-size {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.resource-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.resource-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-title a:hover {
    color: #ff6b6b;
}

.resource-excerpt {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.resource-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.resource-downloads {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.resource-download-btn,
.resource-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-download-btn:hover,
.resource-view-btn:hover {
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.resource-view-btn {
    background: #6c757d;
}

/* Download Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-card {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.tip-card i {
    font-size: 36px;
    color: #ff6b6b;
    margin-bottom: 12px;
}

.tip-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.tip-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* ========================================
   GALLERY STYLES
   ======================================== */

.gallery-archive-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.archive-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.archive-description {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.gallery-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
}

.stat-card i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 12px;
}

.gallery-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.gallery-item {
    break-inside: avoid;
    page-break-inside: avoid;
}

.gallery-item-inner {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item-inner:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.gallery-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item-inner:hover .gallery-thumbnail img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 32px;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 600;
}

.gallery-content {
    padding: 16px;
}

.gallery-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-title a:hover {
    color: #667eea;
}

.gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #6c757d;
}

.gallery-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.category-overview-card {
    display: block;
    padding: 32px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-overview-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 28px;
}

.category-overview-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.category-overview-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
}

/* ========================================
   SINGLE GALLERY
   ======================================== */

.gallery-header {
    margin-bottom: 30px;
}

.gallery-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.gallery-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #6c757d;
}

.gallery-header-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-header-meta a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-header-meta a:hover {
    color: #667eea;
}

.gallery-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 40px;
}

.gallery-main-section {
    min-width: 0;
}

.gallery-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-description {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
}

.gallery-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.gallery-info-card,
.gallery-services-card,
.gallery-share-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-value {
    font-size: 14px;
    color: #1a1a1a;
}

.gallery-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-download-btn:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.services-intro {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #667eea;
    color: #fff;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ee5a6f;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.pinterest {
    background: #e60023;
}

.share-btn.linkedin {
    background: #0077b5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .gallery-content-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .cluster-grid,
    .resources-grid,
    .gallery-masonry-grid,
    .event-services-grid,
    .tips-grid,
    .gallery-categories-grid {
        grid-template-columns: 1fr;
    }

    .cluster-filter-tabs,
    .event-filter-tabs,
    .resource-filter-tabs,
    .gallery-filter-tabs {
        flex-direction: column;
    }

    .cluster-tab,
    .event-tab,
    .resource-tab,
    .gallery-tab {
        width: 100%;
        justify-content: space-between;
    }

    .event-content {
        flex-direction: column;
    }

    .event-thumbnail {
        width: 100%;
        height: 200px;
    }

    .event-timeline-item {
        flex-direction: column;
    }

    .event-date-badge {
        width: 100%;
        flex-direction: row;
        gap: 12px;
        padding: 16px;
    }

    .event-day {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .archive-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .blog-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 24px;
    }

    .gallery-title {
        font-size: 24px;
    }
}

/* ========================================
   SECTION SPACING
   ======================================== */

.cat_section,
.gallery-section {
    margin-bottom: 50px;
}

.cat_section:last-child,
.gallery-section:last-child {
    margin-bottom: 30px;
}

/* SEO Content */
.seo-content {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
}

.seo-content h2,
.seo-content h3 {
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.seo-content h2:first-child,
.seo-content h3:first-child {
    margin-top: 0;
}

.seo-content ul,
.seo-content ol {
    padding-left: 24px;
    margin: 12px 0;
}

.seo-content li {
    margin-bottom: 8px;
}
