/* Additional minimal styles to supplement style.css */

/* Mini header (replacement for hero banner) */
.mini-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 40px 0;
    margin-bottom: 30px;
    margin-top: 80px; /* Add top margin to prevent header overlap */
    box-shadow: var(--box-shadow);
}

.mini-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mini-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.mini-header p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.header-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Author icon instead of author image */
.author-icon {
    font-size: 24px;
    margin-right: 8px;
    color: var(--primary-color);
}

/* Card redesign for minimal images */
.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.article-content {
    padding: 20px;
}

/* Featured content without image */
.featured-main {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.featured-main:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.featured-content {
    padding-left: 15px;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin: 10px 0;
}

/* Trending section styling */
.trending {
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Policy Pages Styling */
.policy-container {
    padding: 40px 0;
    margin-top: 80px; /* Add top margin to prevent header overlap */
}

.policy-content {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.policy-content .last-updated {
    color: #777;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.policy-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.policy-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-section a:hover {
    color: var(--secondary-color);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .mini-header h1 {
        font-size: 2rem;
    }
    
    .mini-header p {
        font-size: 1rem;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-main {
        padding: 20px;
    }
}
