/* ARTIKEL SECTION */
#artikel {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.artikel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.artikel-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* Standard clean card look */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.artikel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    /* Hover lift effect */
}

/* Delay for stagger animation */
.artikel-card:nth-child(1) {
    animation-delay: 0s;
}

.artikel-card:nth-child(2) {
    animation-delay: 0.2s;
}

.artikel-card:nth-child(3) {
    animation-delay: 0.4s;
}

.artikel-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    /* Standard thumbnail */
    overflow: hidden;
    background-color: #f0f0f0;
    border-bottom: 1px solid var(--border-color);
}

.artikel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artikel-card:hover .artikel-img-wrapper img {
    transform: scale(1.05);
}

.artikel-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artikel-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.artikel-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.artikel-card:hover .artikel-title {
    color: #555;
}

.artikel-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.artikel-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-top: auto;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.2rem;
    align-self: flex-start;
}

.artikel-link:hover {
    opacity: 0.6;
}

.artikel-action {
    text-align: center;
    margin-top: 4rem;
}

.artikel-fallback {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artikel-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .artikel-cards {
        grid-template-columns: 1fr;
    }
}