/* === PAGE HEADER === */
body {
    font-weight: bold;
    margin: -32px;
}
.page-header {
    padding: 160px 0 80px 0;
    position: relative; text-align: center;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: 64px; margin-bottom: 20px;
    color: white;
}
.page-header p {
    color: var(--text-secondary); font-size: 18px;
    max-width: 600px; margin: 0 auto;
}

/* === ARTICLES GRID === */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px; padding-bottom: 100px;
}
.article-card {
    background: #bd6cff; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: rgba(128, 52, 221, 0.3);
}
.card-image {
    width: 100%; height: 220px; background-color: #cd90ff;
    position: relative; overflow: hidden;
}
.card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity 0.3s ease;
}
.card-content {
    padding: 25px; display: flex; flex-direction: column; flex-grow: 1;
}
.card-meta {
    font-size: 13px; color: var(--accent-color);
    text-transform: uppercase; letter-spacing: 1px;
    font-weight: 700; margin-bottom: 10px;
}
.card-title {
    font-size: 22px; font-weight: 700; margin-bottom: 15px; line-height: 1.3; color: white;
}
.card-excerpt {
    font-size: 15px; color: var(--text-secondary);
    margin-bottom: 25px; line-height: 1.6; flex-grow: 1;
}
.card-actions {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px; margin-top: auto;
}
.read-btn {
    font-size: 14px; font-weight: 600; color: #fff;
    display: flex; align-items: center; gap: 5px;
    transition: gap 0.3s ease;
}
.read-btn:hover { gap: 10px; color: var(--accent-color); }

/* === LIKE BUTTON === */
.like-btn {
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    color: var(--text-secondary); font-size: 14px; font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease; padding: 5px;
}
.like-btn svg {
    width: 20px; height: 20px; fill: none;
    stroke: currentColor; stroke-width: 2;
    transition: fill 0.3s ease, stroke 0.3s ease;
}
.like-btn:hover { color: #ff4d4d; }
.like-btn.liked { color: #ff4d4d; }
.like-btn.liked svg {
    fill: #ff4d4d; stroke: #ff4d4d; animation: pulse 0.4s ease;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .page-header h1 { font-size: 42px; }
    .articles-grid { grid-template-columns: 1fr; }
}