/* Card Components */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Partner Cards - Removed (moved to separate file) */

/* Template Cards - Removed (moved to separate file) */

/* Article Cards */
.exclusive-articles-section {
    padding: 80px 0;
    background-color: #f9fafc;
}

.exclusive-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 10px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--highlight-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.date-day {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 2px;
}

.article-body {
    padding: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #666;
}

.article-meta i {
    margin-left: 5px;
    color: var(--highlight-color);
}

.article-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #333;
}

.article-excerpt {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.read-more {
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.article-card:hover .read-more::after {
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Partners responsive styles moved to separate file */
    
    /* Template responsive styles moved to separate file */
    
    .exclusive-articles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}