
.site-footer {
    display: none;
}

.footer-bottom-center {
    display: none;
}

/* Press Room Page Styles */
.papikost-press-room {
    min-height: 100vh;
    background: #f8fafc;
    padding: 1.5rem 0;
}

.press-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Section */
.press-header {
    text-align: center;
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.press-header-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.8;
}

.press-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.press-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
}

/* Press List */
.press-list {
    margin-bottom: 2rem;
}

.press-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    display: flex;
    min-height: 140px;
    border: 1px solid #e2e8f0;
}

.press-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #1b75bb;
}

.press-item:last-child {
    margin-bottom: 0;
}

/* Image Section */
.press-image-container {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    border-radius: 8px 0 0 8px;
}

.press-image {
    width: 100%;
    margin: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
    border-radius: 8px 0 0 8px;
}

.press-item:hover .press-image {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.15);
}

/* Content Section */
.press-content {
    flex: 1;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.press-main {
    flex: 1;
}

.press-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-item:hover h3 {
    color: #1b75bb;
}

.press-date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #1b75bb;
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    padding: 0.2rem 0.6rem;
    background: rgba(27, 117, 187, 0.08);
    border-radius: 12px;
    width: fit-content;
}

.press-date i {
    font-size: 0.8rem;
}

.press-description {
    color: #64748b;
    line-height: 1.4;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Actions */
.press-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.press-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: #1b75bb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    border: 1px solid #1b75bb;
}

.press-btn:hover {
    background: #155a96;
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(27, 117, 187, 0.3);
}

.press-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.press-btn:hover i {
    transform: translateX(1px);
}

/* Empty State */
.press-empty {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.press-empty p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Home Button */
.press-home-section {
    text-align: center;
    margin-top: 2rem;
}

.press-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #fff100;
    color: #1e293b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid #fff100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.press-home-btn:hover {
    transform: translateY(-1px);
    color: #1e293b;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 241, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .press-item {
        flex-direction: column;
        min-height: auto;
    }
    
    .press-image-container {
        flex: none;
        width: 100%;
        height: 180px;
        border-radius: 8px 8px 0 0;
    }
    
    .press-image,
    .press-image-placeholder {
        height: 180px;
        border-radius: 8px 8px 0 0;
    }
    
    .press-content {
        padding: 1rem;
    }
    
    .press-actions {
        justify-content: flex-end;
    }
    
    .press-container {
        padding: 0 0.8rem;
    }
}

@media (max-width: 768px) {
    .papikost-press-room {
        padding: 1rem 0;
    }
    
    .press-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .press-title {
        font-size: 1.5rem;
    }
    
    .press-subtitle {
        font-size: 0.85rem;
    }
    
    .press-header-icon {
        font-size: 2rem;
    }
    
    .press-item {
        margin-bottom: 1rem;
        border-radius: 8px;
        min-height: auto;
    }
    
    .press-image-container {
        height: 160px;
        border-radius: 6px 6px 0 0;
    }
    
    .press-image,
    .press-image-placeholder {
        height: 160px;
        border-radius: 6px 6px 0 0;
    }
    
    .press-content {
        padding: 0.8rem;
    }
    
    .press-actions {
        justify-content: flex-end;
    }
    
    .press-item h3 {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }
    
    .press-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .press-date {
        font-size: 0.75rem;
        padding: 0.15rem 0.4rem;
    }
    
    .press-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 4px;
    }
    
    .press-home-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .press-header {
        padding: 1rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .press-title {
        font-size: 1.3rem;
    }
    
    .press-subtitle {
        font-size: 0.8rem;
    }
    
    .press-header-icon {
        font-size: 1.8rem;
    }
    
    .press-content {
        padding: 0.7rem;
    }
    
    .press-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .press-description {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }
    
    .press-date {
        margin-bottom: 0.4rem;
    }
}