.adv-header-title {
    font-size: 2rem;
    color: #6366f1;
    font-weight: 600;
    line-height: 1.3;
}

.adv-searchbox {
    max-width: 500px;
    margin: 30px auto 0;
    position: relative;
}

.adv-searchbox-input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.95rem;
    background: #f9fafb;
}

.adv-searchbox-input:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
}

.adv-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: #9ca3af;
}

.adv-articles-section {
    margin-bottom: 50px;
}

.adv-article-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

.adv-article-image {
    width: 160px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.adv-article-content {
    flex: 1;
}

.adv-article-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.adv-article-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.adv-article-meta {
    font-size: 0.8rem;
    color: #9ca3af;
}

.adv-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.adv-mini-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

.adv-mini-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.adv-mini-card-content {
    padding: 20px;
}

.adv-mini-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.adv-mini-card-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.adv-mini-card-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

.adv-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.adv-pagination-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
    transition: all 0.2s;
}

.adv-pagination-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.adv-pagination-btn.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.adv-pagination-dots {
    color: #9ca3af;
    padding: 0 5px;
}

@media (max-width: 768px) {
    .adv-article-card {
        flex-direction: column;
    }

    .adv-article-image {
        width: 100%;
        height: 180px;
    }

    .adv-header-title {
        font-size: 1.5rem;
    }
}
