/* ORZATTY™ HOLDINGS - COMPONENT STYLES */
/* Specific styles for homepage and component layouts */

/* HOMEPAGE HERO SECTION */
.home-hero {
    background: var(--orzatty-gradient-hero);
    color: var(--orzatty-secondary);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.home-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.home-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    background: var(--orzatty-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.home-hero .hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    font-weight: 500;
}

.home-hero .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.hero-founder {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-info {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* STATS SECTION */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: var(--md-sys-color-surface-variant);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--md-sys-color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--md-sys-elevation-level2);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-sys-elevation-level4);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    background: var(--orzatty-gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orzatty-primary);
}

.stat-icon .material-icons {
    font-size: 24px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--md-sys-color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--md-sys-color-on-surface-variant);
    font-weight: 500;
}

/* FEATURED PRODUCTS SECTION */
.featured-products-section {
    padding: var(--spacing-3xl) 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.featured-product-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orzatty-gradient-accent);
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--md-sys-elevation-level4);
}

.featured-product-card .product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.featured-product-card .product-icon {
    width: 56px;
    height: 56px;
    background: var(--orzatty-gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orzatty-primary);
    font-size: 28px;
}

.featured-product-card .product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-sm);
}

.featured-product-card .product-description {
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.featured-product-card .product-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--orzatty-accent-blue);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
}

.featured-product-card .product-highlight .material-icons {
    font-size: 16px;
}

/* ABOUT PREVIEW SECTION */
.about-preview-section {
    padding: var(--spacing-3xl) 0;
    background: var(--md-sys-color-surface-variant);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.founder-highlight {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--md-sys-color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--md-sys-elevation-level2);
    max-width: 280px;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--orzatty-gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orzatty-primary);
}

.founder-avatar .material-icons {
    font-size: 40px;
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-xs);
}

.founder-title {
    color: var(--orzatty-accent-blue);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.founder-age {
    color: var(--md-sys-color-on-surface-variant);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.founder-location {
    color: var(--md-sys-color-on-surface-variant);
    font-size: 0.875rem;
}

/* CTA SECTION */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--orzatty-gradient-primary);
    color: var(--orzatty-secondary);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* COMPANY INFO PAGE STYLES */
.company-hero {
    background: var(--orzatty-gradient-hero);
    color: var(--orzatty-secondary);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.founder-section {
    padding: var(--spacing-3xl) 0;
}

.founder-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-2xl);
}

.founder-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-sm);
}

.founder-title {
    font-size: 1.25rem;
    color: var(--orzatty-accent-blue);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.founder-age {
    font-size: 1rem;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: var(--spacing-sm);
}

.founder-location {
    font-size: 1rem;
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: var(--spacing-md);
}

.founder-email a {
    color: var(--orzatty-accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.founder-email a:hover {
    text-decoration: underline;
}

/* VISION MISSION SECTION */
.vision-mission-section {
    padding: var(--spacing-3xl) 0;
    background: var(--md-sys-color-surface-variant);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.vision-card,
.mission-card {
    padding: var(--spacing-xl);
}

.vision-card .card-title,
.mission-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-md);
}

/* VALUES SECTION */
.values-section {
    padding: var(--spacing-3xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.value-card {
    text-align: center;
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-sys-elevation-level3);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: var(--orzatty-gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orzatty-primary);
}

.value-icon .material-icons {
    font-size: 32px;
}

.value-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-sm);
}

.value-description {
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.6;
}

/* CONTACT SECTION */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--md-sys-color-surface-variant);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.contact-card {
    padding: var(--spacing-xl);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-md);
}

.contact-card p {
    margin-bottom: var(--spacing-sm);
    color: var(--md-sys-color-on-surface-variant);
}

.contact-card a {
    color: var(--orzatty-accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* PRODUCT SHOWCASE STYLES */
.products-hero {
    background: var(--orzatty-gradient-hero);
    color: var(--orzatty-secondary);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.filter-section {
    padding: var(--spacing-xl) 0;
    background: var(--md-sys-color-surface-variant);
}

.filter-controls {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--md-sys-color-outline);
    background: transparent;
    color: var(--md-sys-color-on-surface);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--md-sys-color-primary);
    background: var(--md-sys-color-primary-container);
}

.filter-btn.active {
    background: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-color: var(--md-sys-color-primary);
}

.products-section {
    padding: var(--spacing-3xl) 0;
}

.main-products-section {
    padding: var(--spacing-3xl) 0;
    background: var(--md-sys-color-surface-variant);
}

.main-products-showcase {
    display: grid;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.main-product-highlight {
    padding: var(--spacing-xl);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.highlight-icon .material-icons {
    font-size: 32px;
}

.highlight-info {
    flex: 1;
}

.highlight-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-xs);
}

.highlight-description {
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.highlight-specs h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-md);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.spec-label {
    font-size: 0.875rem;
    color: var(--md-sys-color-on-surface-variant);
    font-weight: 500;
}

.spec-value {
    font-size: 0.875rem;
    color: var(--md-sys-color-on-surface);
    font-weight: 400;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-md);
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .home-hero {
        min-height: 70vh;
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-founder {
        margin-top: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    
    .stat-card {
        padding: var(--spacing-lg);
    }
    
    .featured-product-card {
        margin-bottom: var(--spacing-md);
    }
    
    .founder-highlight {
        padding: var(--spacing-lg);
    }
    
    .value-card {
        padding: var(--spacing-lg);
    }
    
    .contact-card {
        padding: var(--spacing-lg);
    }
}

/* HERO ACTIONS */
.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.hero-founder {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-info {
    font-size: 1rem;
    opacity: 0.9;
}

/* STATS SECTION */
.stats-section {
    background: var(--md-sys-color-surface-variant);
    padding: var(--spacing-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--md-sys-color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--md-sys-elevation-level1);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-sys-elevation-level3);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--orzatty-gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--orzatty-primary);
    font-size: 32px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--md-sys-color-primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--md-sys-color-on-surface-variant);
    font-weight: 500;
}

/* FEATURED PRODUCTS */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.featured-product-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--md-sys-elevation-level4);
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orzatty-gradient-accent);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.product-icon {
    width: 56px;
    height: 56px;
    background: var(--md-sys-color-primary-container);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.product-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--orzatty-accent-blue);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ABOUT PREVIEW */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.founder-highlight {
    text-align: center;
    padding: var(--spacing-xl);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: var(--orzatty-gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--orzatty-primary);
    font-size: 40px;
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.founder-title,
.founder-age,
.founder-location {
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: var(--spacing-xs);
}

/* CTA SECTION */
.cta-section {
    background: var(--orzatty-gradient-primary);
    color: var(--orzatty-secondary);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* SECTION ACTIONS */
.section-actions {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-actions,
    .about-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn,
    .about-actions .btn,
    .cta-actions .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* PRESS RELEASE STYLES */
.press-hero {
    background: var(--orzatty-gradient-hero);
    color: var(--orzatty-secondary);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.filter-section {
    padding: var(--spacing-xl) 0;
    background: var(--md-sys-color-surface-variant);
    border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.filter-controls {
    display: flex;
    gap: var(--spacing-lg);
    align-items: end;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    min-width: 150px;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--md-sys-color-on-surface-variant);
}

.filter-select {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--md-sys-color-outline);
    border-radius: var(--radius-sm);
    background: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--md-sys-color-primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.search-group {
    min-width: 200px;
}

.search-input-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    padding-right: 40px;
    border: 2px solid var(--md-sys-color-outline);
    border-radius: var(--radius-sm);
    background: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--md-sys-color-primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.search-icon {
    position: absolute;
    right: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
    color: var(--md-sys-color-on-surface-variant);
    font-size: 20px;
    pointer-events: none;
}

/* FEATURED PRESS SECTION */
.featured-press-section {
    padding: var(--spacing-3xl) 0;
}

.featured-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.featured-press-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.featured-press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orzatty-gradient-accent);
}

.featured-press-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-sys-elevation-level3);
}

.press-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.press-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.press-category {
    font-size: 0.75rem;
    font-weight: 600;
}

.press-date {
    font-size: 0.875rem;
    color: var(--md-sys-color-on-surface-variant);
}

.press-headline {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.press-link {
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.press-link:hover {
    color: var(--orzatty-accent-blue);
}

.press-excerpt {
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.press-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.tag {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--md-sys-color-secondary-container);
    color: var(--md-sys-color-on-secondary-container);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.press-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* PRESS RELEASES LIST */
.press-releases-section {
    padding: var(--spacing-3xl) 0;
    background: var(--md-sys-color-surface-variant);
}

.press-releases-list {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.press-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    transition: all var(--transition-normal);
}

.press-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--md-sys-elevation-level2);
}

.press-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.press-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

.press-card-excerpt {
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.6;
}

.press-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: var(--spacing-3xl);
    background: var(--md-sys-color-surface);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--md-sys-color-outline-variant);
}

.empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    background: var(--md-sys-color-secondary-container);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--md-sys-color-on-secondary-container);
}

.empty-icon .material-icons {
    font-size: 32px;
}

.empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--spacing-sm);
}

.empty-description {
    color: var(--md-sys-color-on-surface-variant);
    margin-bottom: var(--spacing-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.pagination-info {
    color: var(--md-sys-color-on-surface-variant);
    font-size: 0.875rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .featured-press-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .press-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }
    
    .press-actions {
        justify-content: center;
    }
    
    .press-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .press-actions {
        flex-direction: column;
    }
    
    .press-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .empty-state {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
}