/* Press Releases Widget Styles */

.press-releases-wrapper {
    margin: 0 auto;
}

.press-releases-main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 30px;
    color: #333;
}

.press-releases-category {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    padding-bottom: 15px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 40px;
}

.press-articles-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.press-article-item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-article-item.visible {
    display: block;
    opacity: 1;
}

.press-article-inner {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.press-article-item:last-child .press-article-inner {
    border-bottom: none;
    padding-bottom: 0;
}

.press-article-logo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-article-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.press-article-content {
    flex: 1;
}

.press-article-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #333;
    line-height: 1.4;
}

.press-article-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 15px;
}

.press-article-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-article-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Pagination Styles */
.press-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.press-pagination .page-nav {
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.press-pagination .page-nav:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #999;
}

.press-pagination .page-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.press-pagination .page-nav svg {
    display: block;
    flex-shrink: 0;
}

.press-pagination .page-numbers {
    display: flex;
    gap: 8px;
}

.press-pagination .page-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: none;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.press-pagination .page-number:hover {
    background: #e0e0e0;
}

.press-pagination .page-number.active {
    background: #e0e0e0;
    color: #000;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-releases-wrapper {
        padding: 40px 15px;
    }

    .press-releases-main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .press-releases-category {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .press-articles-container {
        gap: 30px;
    }

    .press-article-inner {
        gap: 15px;
        padding-bottom: 30px;
    }

    .press-article-logo {
        width: 80px;
        height: 80px;
    }

    .press-article-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .press-article-description {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .press-article-link {
        font-size: 13px;
    }

    .press-pagination {
        margin-top: 40px;
        gap: 8px;
    }

    .press-pagination .page-nav {
        min-width: 36px;
        min-height: 36px;
        padding: 8px;
    }

    .press-pagination .page-numbers {
        gap: 6px;
    }

    .press-pagination .page-number {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .press-releases-main-title {
        font-size: 24px;
    }

    .press-article-inner {
        gap: 12px;
    }

    .press-article-logo {
        width: 60px;
        height: 60px;
    }

    .press-article-title {
        font-size: 15px;
    }

    .press-article-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .press-article-link {
        font-size: 12px;
    }

    .press-pagination .page-nav {
        min-width: 32px;
        min-height: 32px;
        padding: 6px;
    }

    .press-pagination .page-number {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
