/* PREMIUM LAYOUT & ANIMATIONS */

* {
    box-sizing: border-box;
}

body {
    background-color: #f0f2f5;
    /* Light grey background for contrast */
}

/* Layout Grid 75% - 25% */
.premium-container {
    width: 95%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0;
    display: grid;
    grid-template-columns: 75% 25%;
    /* Fixed 2 columns: 75% - 25% */
    gap: 30px;
    align-items: start;
}

/* Main Content Area */
.premium-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out;
    min-width: 0;
    /* Prevent overflow */
}

/* Sidebar Area */
.premium-sidebar {
    position: sticky;
    top: 20px;
    animation: fadeInUp 1s ease-out;
    min-width: 0;
    /* Prevent overflow */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Styles */
.premium-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.premium-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.premium-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-card:hover .premium-card-img img {
    transform: scale(1.1);
}

.premium-card-body {
    padding: 20px;
}

.premium-card-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.premium-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.4;
}

.premium-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.premium-card-title a:hover {
    color: #203e78;
}

.premium-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.premium-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #203e78 0%, #3b5998 100%);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(32, 62, 120, 0.3);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(32, 62, 120, 0.4);
    background: linear-gradient(135deg, #3b5998 0%, #203e78 100%);
}

/* Page Header */
.page-header-premium {
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    position: relative;
}

.page-header-premium h1 {
    font-size: 28px;
    color: #203e78;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header-premium::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #f39c12;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #203e78;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.widget-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget-list a {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: block;
    transition: color 0.2s;
}

.widget-list a:hover {
    color: #203e78;
    padding-left: 5px;
}

.widget-meta {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    display: block;
}

/* Polling Widget */
.poll-widget {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.poll-question {
    font-weight: 700;
    margin-bottom: 15px;
    color: #203e78;
}

.poll-option {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.poll-btn {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    background: #203e78;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.poll-btn:hover {
    background: #1a3263;
}

/* Responsive */
@media (max-width: 992px) {
    .premium-container {
        grid-template-columns: 1fr;
        /* Stack on mobile/tablet */
        width: 100%;
        padding: 0 15px;
    }

    .premium-sidebar {
        position: static;
    }
}