/**
 * BizzShort Alignment Fixes
 * Alignment and spacing consistency across all pages
 * Version: 20260118
 */

/* ============================================
   Container Alignment
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   Grid Alignment
   ============================================ */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Header Alignment
   ============================================ */
.logo-ad-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    color: #0b2d5b;
}

.logo-text p {
    font-size: 10px;
    margin: 4px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: #0b2d5b;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .logo-ad-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-text h1 {
        font-size: 26px;
    }
}

/* ============================================
   Section Alignment
   ============================================ */
.content-section {
    padding: 60px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center .section-title {
    margin-bottom: 10px;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Card Grid Alignment
   ============================================ */
.breaking-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

@media (max-width: 992px) {
    .breaking-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .breaking-news-grid {
        grid-template-columns: 1fr;
    }
}

/* Interview Grid */
.interview-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .interview-videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .interview-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .interview-videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Latest Updates Grid */
.news-video-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .news-video-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .news-video-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-video-grid-large {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer Alignment
   ============================================ */
.footer-grid-enhanced {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .footer-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

/* ============================================
   About Section Alignment
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

/* About Values */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
    }
}

.value-card-mini {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-icon-mini {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon-mini i {
    font-size: 24px;
    color: white;
}

/* ============================================
   Advertise Section Alignment
   ============================================ */
.advertise-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ad-stat-item {
    text-align: center;
}

.ad-stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.ad-stat-item p {
    color: #7f8c8d;
}

.advertise-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .advertise-options {
        grid-template-columns: 1fr;
    }
}

.ad-option-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.ad-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.ad-option-card.featured-option {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.ad-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ad-icon i {
    font-size: 28px;
    color: white;
}

.ad-price {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    margin-top: 20px;
}

.advertise-cta {
    text-align: center;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* ============================================
   Policy Section Alignment
   ============================================ */
.policy-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1024px) {
    .policy-grid-clean {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .policy-grid-clean {
        grid-template-columns: 1fr;
    }
}

.policy-card-clean {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.policy-icon-clean {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.policy-icon-clean i {
    font-size: 24px;
    color: white;
}

.policy-card-clean h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.policy-card-clean p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.policy-link-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.policy-link-clean:hover {
    gap: 12px;
}

/* ============================================
   Event Card Alignment
   ============================================ */
.event-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.event-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.date-day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
    flex: 1;
}

.event-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.event-location,
.event-time {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.event-location i,
.event-time i {
    color: #667eea;
    margin-right: 8px;
    width: 16px;
}

.event-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ============================================
   Interview Card Alignment
   ============================================ */
.interview-video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.video-embed-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.instagram-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.instagram-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-details {
    padding: 20px;
}

.interview-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.interview-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #7f8c8d;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   Admin Link Alignment
   ============================================ */
.admin-link-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.admin-link-clean:hover {
    color: white;
}

.admin-link-clean i {
    font-size: 16px;
}
