/* =================================
   BETA STYLE - HORECA NEWS
   Mobile-First Responsive Design
   Inspired by NEWSTEN Template
   ================================= */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.full-width-container {
    width: 100%;
    margin: 0;
    padding: 0 16px;
}

/* =================================
   HEADER STYLES
   ================================= */
.app-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
    color: #ff4757;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* =================================
   MAIN CONTENT
   ================================= */
.main-content {
    margin-top: 60px;
    padding-bottom: 80px;
}

/* =================================
   NEWS TODAY SECTION
   ================================= */
.news-today {
    padding: 20px 0;
}

.news-today-full {
    padding: 0;
}

.featured-slider-full {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.date-text {
    font-size: 14px;
    color: #8e8e93;
    font-weight: 500;
}

.featured-slider-full {
    position: relative;
}

.featured-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.featured-slides {
    position: relative;
    width: 100%;
}

.featured-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Pierwszy slajd ustawia wysokość kontenera */
.featured-card:first-child {
    position: relative;
    visibility: visible;
    opacity: 0.01; /* Prawie niewidoczny, ale wciąż w flow dokumentu */
}

.featured-card.active {
    opacity: 1;
    visibility: visible;
}

.featured-content-wrapper {
    display: flex;
    gap: 40px;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.featured-sidebar {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.featured-sidebar .featured-importance {
    background: rgba(255, 193, 7, 0.15);
    border-left: 4px solid #FFC107;
    padding: 20px;
    border-radius: 8px;
}

.featured-sidebar .importance-header,
.featured-sidebar .insights-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.featured-sidebar .importance-header h4,
.featured-sidebar .insights-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.featured-sidebar .importance-header i {
    color: #FFC107;
    font-size: 20px;
}

.featured-sidebar .insights-header i {
    color: #4CAF50;
    font-size: 20px;
}

.featured-sidebar .featured-importance p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.featured-sidebar .insights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-sidebar .insight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
}

.featured-sidebar .insight-item i {
    color: #4CAF50;
    font-size: 16px;
    margin-top: 4px;
}

.featured-sidebar .insight-item span {
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

.featured-sidebar .expand-insights {
    margin-top: 16px;
    text-align: center;
}

.featured-sidebar .expand-link {
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #4CAF50;
    border-radius: 20px;
    background: rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

/* Why important section below news */
.featured-importance-below {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FFC107;
    border-radius: 8px;
}

.featured-importance-below .importance-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.featured-importance-below .importance-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.featured-importance-below .importance-header i {
    color: #FFC107;
    font-size: 18px;
}

.featured-importance-below p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.featured-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.featured-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    pointer-events: auto;
    font-size: 14px;
}

.featured-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.featured-arrow.prev {
    padding-right: 2px;
}

.featured-arrow.next {
    padding-left: 2px;
}

.featured-progress {
    margin-top: 8px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.featured-progress-bar {
    height: 100%;
    width: 0;
    background: #FF4757;
    transition: width 0.1s linear;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.featured-image.no-image {
    background: linear-gradient(135deg, #FF4757 0%, #FF7B86 100%);
}

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

.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 71 87 / 60%);
    z-index: 1;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 20px 20px;
    color: white;
    z-index: 2;
}

.category-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-red { background: #ef4444; }
.category-hotels { background: #3b82f6; }
.category-restaurants { background: #ef4444; }
.category-catering { background: #f59e0b; }
.category-technology { background: #8b5cf6; }
.category-delivery { background: #10b981; }

.featured-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    opacity: 0.9;
}

.featured-meta > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-companies {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.featured-source {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.bookmark-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1a1a1a;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* =================================
   TOP CATEGORIES SECTION
   ================================= */
.top-categories {
    background: linear-gradient(135deg, #fef9e7 0%, #fef3c7 100%);
    padding: 24px 0;
    margin: 40px 0 20px 0;
    position: relative;
    overflow: hidden;
    height: 180px;
}

.top-categories::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 50%;
    transform: rotate(45deg);
}

.categories-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.categories-label {
    flex-shrink: 0;
    width: 35px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.categories-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 2px;
    line-height: 1.2;
}

.categories-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.categories-slider::-webkit-scrollbar {
    display: none;
}

.category-slide {
    max-width: 150px;
    height: 120px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-slide:hover {
    transform: translateY(-4px);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 12px 10px 10px;
    color: white;
}

.category-title {
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.category-count-circle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* =================================
   TRENDING SECTION
   ================================= */
.trending-section {
    padding: 24px 0;
}

.view-all-btn {
    font-size: 14px;
    color: #ff4757;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 71, 87, 0.1);
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trending-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trending-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.trending-source {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.trending-scope {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8e8e93;
}

.trending-scope i {
    font-size: 14px;
}

.trending-main {
    display: block;
}

.trending-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.trending-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 50%);
}

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

.trending-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.content-split {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.content-left,
.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trending-summary p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.trending-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

.sector-badge {
    background: var(--sector-color, #3b82f6);
}

.category-badge {
    background: #8e8e93;
}

.trending-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.trending-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #666;
}

.trending-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-date, .meta-reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trending-companies {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #8e8e93;
}

/* Mobile-specific classes */
.mobile-only {
    display: none;
}



@media (max-width: 900px) {
    .content-split {
        flex-direction: column;
        gap: 16px;
    }
    
    .mobile-only {
        display: block;
    }
    
    .insight-item.mobile-hidden {
        display: none !important;
    }
    
    .insight-item.mobile-hidden.mobile-expanded {
        display: flex !important;
    }
    
    /* Remove rounded corners on mobile */
    .trending-item {
        border-radius: 0 !important;
    }
    
    .trending-importance {
        border-radius: 0 !important;
    }
    
    .trending-insights {
        border-radius: 0 !important;
    }
    
    .featured-importance-below {
        border-radius: 0 !important;
    }
    
    .featured-sidebar {
        border-radius: 0 !important;
    }
    
    .featured-image {
        border-radius: 0 !important;
    }
    
    .top-categories {
        border-radius: 0 !important;
    }
    
    .linkedin-post {
        border-radius: 0 !important;
    }
    
    .tech-sponsor {
        border-radius: 0 !important;
    }
    
    .trending-image {
        border-radius: 0 !important;
    }
    
    .expand-link {
        border-radius: 12px !important;
    }
}

@media (min-width: 768px) {
    .trending-image {
        width: 160px;
        height: 160px;
    }

    .trending-title {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .trending-image {
        width: 120px;
        height: 120px;
    }
}



/* =================================
   LINKEDIN HOT SECTION
   ================================= */
.linkedin-hot {
    padding: 32px 0;
    background: #f8f9fa;
}

.linkedin-hot .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hot-badge {
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.linkedin-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.linkedin-post {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.linkedin-post:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.post-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0073b1, #005885);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
    line-height: 1.3;
}

.author-title {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 4px;
}

.post-time {
    font-size: 12px;
    color: #999;
}

.post-content {
    margin-bottom: 16px;
    line-height: 1.5;
    color: #191919;
}

.post-content p {
    margin-bottom: 8px;
}

.post-stats {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid #f1f1f1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stat-item:hover {
    color: #0073b1;
}

.stat-item i {
    font-size: 14px;
}

/* =================================
   TECH SPONSOR SECTION
   ================================= */
.tech-sponsor {
    background: #f8f9fa;
    padding: 32px 0;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.tech-sponsor::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    animation: techFloat 8s ease-in-out infinite;
}

.tech-sponsor::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    animation: techFloat 10s ease-in-out infinite reverse;
}

@keyframes techFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -15px) rotate(90deg); }
    66% { transform: translate(-10px, 10px) rotate(180deg); }
}

.sponsor-header {
    text-align: center;
    margin-bottom: 24px;
}

.sponsor-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.sponsor-banner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.banner-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.banner-text {
    flex: 1;
    min-width: 0;
}

.banner-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.banner-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.banner-cta {
    flex-shrink: 0;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

/* =================================
   COMPANIES SECTION (O nich się mówi)
   ================================= */
.for-you-section {
    padding: 24px 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.company-card,
a.company-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.company-card:hover,
a.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.company-card::before,
a.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.company-info {
    width: 100%;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.company-mentions {
    font-size: 12px;
    color: #8e8e93;
    font-weight: 500;
}

/* =================================
   LATEST NEWS SECTION
   ================================= */
.latest-news {
    background: white;
    padding: 24px 0;
    margin-top: 20px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.08);
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 4px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #8e8e93;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #ff4757;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-more-link {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 71, 87, 0.3);
}

.more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 71, 87, 0.4);
    color: white;
    text-decoration: none;
}

.more-link:after {
    content: '→';
    font-size: 16px;
}

.latest-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}



/* =================================
   POPULAR TAGS SECTION
   ================================= */
.popular-tags {
    padding: 32px 0;
    background: #f8f9fa;
    border-radius: 24px 24px 0 0;
    margin-top: 20px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.tag-pill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.tag-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* =================================
   BOTTOM NAVIGATION
   ================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.08);
    border-radius: 24px 24px 0 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    color: #8e8e93;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-item.active {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 71, 87, 0.3);
}

.nav-label {
    display: none;
    font-size: 14px;
    font-weight: 500;
}

/* Tooltips for navbar */
.nav-item {
    position: relative;
}

.nav-item[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1001;
    opacity: 0;
    animation: tooltipFadeIn 0.2s ease-out forwards;
}

.nav-item[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    opacity: 0;
    animation: tooltipFadeIn 0.2s ease-out forwards;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Desktop styles dla navbara */
@media (min-width: 1024px) {
    .bottom-nav {
        max-width: 800px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 24px;
        bottom: 20px;
        padding: 8px;
        background: #ffffff;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.15),
            0 16px 48px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        width: auto;
        height: auto;
        padding: 8px 16px;
        border-radius: 8px;
        gap: 8px;
        transition: all 0.2s ease;
    }

    .nav-item:hover {
        background: #f5f5f5;
    }

    .nav-item.active {
        background: #ff4757;
        color: white;
        font-weight: 500;
    }

    .nav-label {
        display: block;
    }

    .nav-item[data-tooltip]:hover::before,
    .nav-item[data-tooltip]:hover::after {
        display: none;
    }
}

/* =================================
   TABLET STYLES (768px+)
   ================================= */
@media (max-width: 767px) {
    .featured-slider-full {
        padding: 0;
    }
    
    .featured-content-wrapper {
        flex-direction: column;
        gap: 20px;
        max-width: none;
    }
    
    .featured-main-content {
        flex: 1;
    }
    
    .featured-sidebar {
        flex: 1;
        padding: 20px;
        margin: 10px 0;
        max-width: none;
    }
    
    .featured-sidebar .importance-header h4,
    .featured-sidebar .insights-header h4 {
        font-size: 16px;
    }
    
    .featured-importance-below {
        margin-top: 16px;
        padding: 16px;
    }
    
    .featured-importance-below .importance-header h4 {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 24px;
    }
    
    .full-width-container {
        padding: 0 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .featured-image {
        height: 320px;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .categories-slider {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .category-slide {
        min-width: 180px;
        height: 180px;
    }
    
    .trending-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .trending-description {
        display: -webkit-box;
        font-size: 13px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 8px;
        margin-top: 6px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    

    
    .banner-content {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    
    .banner-text {
        text-align: left;
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    

}

/* =================================
   DESKTOP STYLES (1024px+)
   ================================= */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 32px;
    }
    
    .main-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        max-width: 1200px;
        margin: 60px auto 0;
        padding: 40px 32px 80px;
    }
    

    
    .news-today-full {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .trending-section {
        grid-column: 2;
        grid-row: 4 / 6;
        margin-top: 0;
    }
    
    .top-categories {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 20px 0px;
        border-radius: 20px;
    }
    
    .linkedin-hot {
        grid-column: 1;
        grid-row: 3;
        margin: 20px 0;
    }
    
    .tech-sponsor {
        grid-column: 2;
        grid-row: 3;
        border-radius: 20px;
        margin: 20px 0 0 20px;
    }
    
    .top-categories .categories-slider {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 8px 0 16px 0;
        gap: 20px;
        scrollbar-width: thin;
        scrollbar-color: #ddd transparent;
    }
    
    .top-categories .categories-slider::-webkit-scrollbar {
        height: 6px;
    }
    
    .top-categories .categories-slider::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .top-categories .categories-slider::-webkit-scrollbar-thumb {
        background-color: #ddd;
        border-radius: 3px;
    }
    
    .top-categories .category-slide {
        min-width: 120px;
        height: 120px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .latest-news {
        grid-column: 1 / -1;
        grid-row: 4;
    }
    
    .for-you-section {
        grid-column: 1 / -1;
        grid-row: 5;
    }
    
    .popular-tags {
        grid-column: 1 / -1;
        grid-row: 6;
    }
    
    .popular-tags .tags-cloud {
        justify-content: flex-start;
        max-width: 1200px;
        margin: 20px auto 0;
        gap: 16px;
    }
    
    .popular-tags .tag-pill {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .linkedin-hot .linkedin-posts {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .linkedin-hot .linkedin-post {
        height: fit-content;
    }
    
    .featured-image {
        height: 400px;
    }
    
    .featured-title {
        font-size: 32px;
    }
    
    .featured-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .trending-section .trending-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .trending-section .trending-item {
        padding: 16px;
    }
    
    .trending-section .section-title {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .trending-section .trending-image {
        display: none;
    }
    
    .trending-section .section-header {
        align-items: center;
        gap: 16px;
    }
    
    .trending-section .view-all-btn {
        flex-shrink: 0;
        margin: 0;
    }
    
    .trending-image {
        width: 100px;
        height: 100px;
    }
    
    .trending-title {
        font-size: 18px;
    }
    
    .trending-description {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =================================
   PAGES STYLES
   ================================= */
.categories-page,
.trending-page,
.companies-page,
.linkedin-page {
    padding: 24px 0;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.category-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-image {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

/* =================================
   MAIN SIDEBAR STYLES
   ================================= */
.main-sidebar {
    display: none;
}

/* Newsletter Sidebar Styles */
.newsletter-sidebar {
    background: linear-gradient(135deg, #FF4757 0%, #FF7B86 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.newsletter-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-align: center;
}

.newsletter-sidebar-description {
    font-size: 14px;
    color: white;
    opacity: 0.95;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-sidebar-form-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-sidebar-input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    background: white;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-sidebar-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-sidebar-input::placeholder {
    color: #999;
}

.newsletter-sidebar-button {
    background: white;
    color: #FF4757;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-sidebar-button:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Show sidebar on desktop when main-content has grid */
@media (min-width: 1024px) {
    .main-sidebar {
        display: block;
    }
}

/* Ensure newsletter sidebar form is always vertical */
@media (min-width: 768px) {
    .newsletter-sidebar .form-group {
        flex-direction: column !important;
        gap: 12px;
    }
}

/* =================================
   INTERESTING NEWS SIDEBAR
   ================================= */

/* =================================
   NEWS CONTENT STYLES
   ================================= */
.featured-importance {
    background: rgba(255, 193, 7, 0.2);
    border-left: 3px solid #FFC107;
    padding: 12px 16px;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 4px;
}

.featured-importance i {
    color: #FFC107;
    font-size: 18px;
    margin-top: 2px;
}

.featured-importance p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.featured-insights {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.insight-item i {
    color: #4CAF50;
    font-size: 14px;
    margin-top: 4px;
}

.insight-item span {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

/* Styles for trending news items */
.trending-importance {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #FFC107;
    padding: 16px;
    margin: 0;
    border-radius: 8px;
}

.importance-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.importance-header i {
    color: #FFC107;
    font-size: 16px;
}

.importance-header span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.trending-importance p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.trending-insights {
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4CAF50;
    padding: 16px;
    margin: 0;
    border-radius: 8px;
}

.insights-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.insights-header i {
    color: #4CAF50;
    font-size: 16px;
}

.insights-header span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trending-insights .insight-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #666;
}

.trending-insights .insight-item i {
    color: #4CAF50;
    font-size: 12px;
    margin-top: 4px;
}

.trending-insights .insight-item span {
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
}

.expand-insights {
    margin-top: 12px;
    text-align: center;
}

.expand-link {
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #4CAF50;
    border-radius: 20px;
    background: rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.expand-link:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-1px);
}

.expand-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.expand-link.expanded i {
    transform: rotate(180deg);
}

/* =================================
   FOOTER STYLES
   ================================= */
.site-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #FF4757;
    margin: 0;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 14px;
    color: #666;
    margin: 0;
    max-width: 400px;
    line-height: 1.4;
}

.footer-contact {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact:hover {
    color: #FF4757;
}

/* Mobile responsiveness for footer */
@media (max-width: 900px) {
    .site-footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
}

/* =================================
   NEWS ITEM LINKS
   ================================= */
.featured-link,
.trending-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-link:hover,
.trending-item-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

.trending-item-link:hover .trending-item {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-link:hover .featured-card {
    transform: none; /* Prevent double transform */
}

/* Prevent slider controls from triggering link */
.featured-controls,
.featured-arrow,
.expand-link {
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.featured-link {
    position: relative;
    z-index: 1;
}

/* =================================
   LARGE DESKTOP STYLES (1440px+)
   ================================= */
@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
    
    .main-content {
        max-width: 1440px;
        grid-template-columns: 1fr 400px;
        gap: 10px;
    }
    
    .categories-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =================================
   CONTACT PAGE STYLES
   ================================= */
.contact-page {
    padding: 24px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 32px;
}

.about-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: left;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.contact-info {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item,
.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon,
.note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-content h4,
.note-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-link {
    font-size: 16px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.note-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Responsive styles for contact page */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 7fr 5fr;
        gap: 40px;
    }
    
    .about-title,
    .contact-title {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 17px;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        gap: 60px;
    }
    
    .about-section,
    .contact-info {
        padding: 40px;
    }
}

/* =================================
   NEWSLETTER SECTION STYLES
   ================================= */
.newsletter {
    background: linear-gradient(135deg, #FF4757 0%, #FF7B86 100%);
    padding: 60px 0;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 6;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.newsletter-description {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    opacity: 0.95;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-form-inner {
    width: 100%;
    max-width: 500px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-input {
    padding: 16px 20px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #333;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: white;
    color: #FF4757;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-button:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.newsletter-button:active {
    transform: translateY(0);
}

/* Responsive styles for newsletter */
@media (min-width: 768px) {
    .newsletter {
        padding: 80px 0;
    }
    
    .newsletter-container {
        padding: 0 24px;
        gap: 32px;
    }
    
    .newsletter-title {
        font-size: 42px;
    }
    
    .newsletter-description {
        font-size: 20px;
    }
    
    .form-group {
        flex-direction: row;
        gap: 12px;
    }
    
    .newsletter-input {
        flex: 1;
        font-size: 18px;
        padding: 18px 24px;
    }
    
    .newsletter-button {
        flex-shrink: 0;
        padding: 18px 32px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .newsletter-container {
        padding: 0 32px;
        gap: 40px;
    }
    
    .newsletter-title {
        font-size: 48px;
    }
    
    .newsletter-description {
        font-size: 22px;
    }
}

/* =================================
   FLASH MESSAGES STYLES
   ================================= */
.flash-message {
    padding: 16px 0;
    position: relative;
    z-index: 1000;
}

.flash-notice {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
}

.flash-alert {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.flash-content i {
    font-size: 18px;
    flex-shrink: 0;
}

.flash-content span {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.flash-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.flash-close:hover {
    opacity: 1;
} 
