/* -------- Blog Page Specific Styles -------- */

/* --- Description Section --- */
.description-section {
    padding: 50px 20px;
}

.d-title {
    width: 50%;
}

.description-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 56px;
    color: rgb(27, 31, 32);
    margin-top: 20px;
}

.description-text {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgb(27, 31, 32);
    margin-top: 20px;
}

@media (max-width: 992px) {
    .d-title {
        width: 100%;
    }
    .description-title {
        font-size: 40px;
        line-height: 48px;
    }
    .description-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .d-title {
        width: 100%;
    }
    .description-title {
        font-size: 32px;
        line-height: 40px;
    }
    .description-text {
        font-size: 14px;
        line-height: 22px;
    }
}

.description-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.description-image.animate {
    opacity: 1;
    transform: translateY(0);
}

/* --- Blog Cards Section --- */
.storycards-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.storycards-section .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.storycards-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.storycards-section .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.storycards-section .card-body {
    padding: 20px;
    text-align: center;
}

.storycards-section .card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.storycards-section .card-text {
    font-size: 16px;
    color: #555;
}

@media (max-width: 992px) {
    .storycards-section {
        padding: 50px 15px;
    }
}

@media (max-width: 768px) {
    .storycards-section .card-title {
        font-size: 20px;
    }

    .storycards-section .card-text {
        font-size: 14px;
    }
}
