/* CSS Document */

.content-auto {
    content-visibility: auto;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-hover {
    transition: all 0.3s;
}

.card-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-0.25rem);
}

.gradient-overlay {
    background: linear-gradient(to right, rgba(22, 93, 255, 0.9), rgba(56, 189, 248, 0.9));
}

.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.section-desc {
    color: rgba(15, 23, 42, 0.7);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.btn-primary {
    background-color: #165DFF;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
    background-color: rgba(22, 93, 255, 0.9);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-0.125rem);
}

.btn-outline {
    background-color: white;
    color: #165DFF;
    border: 1px solid #165DFF;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: rgba(22, 93, 255, 0.05);
}

.blog-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #F3F4F6;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-0.25rem);
}

.author-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #F3F4F6;
}

.category-tag {
    background-color: rgba(22, 93, 255, 0.1);
    color: #165DFF;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.category-tag:hover {
    background-color: rgba(22, 93, 255, 0.2);
}

.tag-active {
    background-color: #165DFF;
    color: white;
}