/* Custom Home CSS - Premium Theme */

/* General Section Styles */
.premium-section {
    padding: 100px 0;
    background-color: #f5f0e6;
    position: relative;
}

/* Section Header */
.premium-section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.premium-section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 500;
}

.premium-section-title p {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

.premium-view-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: #ee3239;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ee3239;
}

.premium-view-btn:hover {
    background-color: transparent;
    color: #ee3239;
}

/* Article Card Design */
.premium-article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-article-img {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: block;
}

.premium-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-article-card:hover .premium-article-img img {
    transform: scale(1.05);
}

.premium-article-content {
    padding: 30px;
}

.premium-article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
}

.premium-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.premium-article-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.premium-article-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-article-title a:hover {
    color: #ee3239;
}

.premium-read-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ee3239;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.premium-read-btn:hover {
    gap: 10px;
    color: #d12e34;
}

/* Slider Navigation (Custom) */
.premium-slider-nav {
    display: flex;
    gap: 10px;
}

.premium-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #111;
    background: transparent;
}

.premium-nav-btn:hover {
    background: #ee3239;
    border-color: #ee3239;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .premium-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .premium-section-title h3 {
        font-size: 2.5rem;
    }
}