/* ===== STORIES SECTION ===== */
.stories {
    padding: 60px;
    font-family: "Proxima Nova Rg";
}

/* ===== STORIES HEADER ===== */
.stories__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.stories__title {
    font-size: 1.875rem;
    font-weight: 400;
    color: rgb(4, 142, 201);
    margin: 0;
    letter-spacing: -0.01em;
}

/* ===== "More" button ===== */
.stories__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: rgb(4, 142, 201);
    font-size: 0.9375rem;
    font-weight: 600;
    background: #fff;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.stories__more:hover {
    background: #f3fbff;
    border-color: #048ec9;
    color: #048ec9;
}

.stories__more-arrow {
    font-size: 1.1rem;
    line-height: 1;
}

/* ===== CARD ===== */
.stories-card {
    display: flex;
    flex-direction: column;
}

/* Image wrapper — fixed aspect ratio so both cards are identical height */
.stories-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}

.stories-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body */
.stories-card__body {
    padding: 20px 0 0;
}

.stories-card__tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #383838;
    margin-bottom: 10px;
}

.stories-card__name {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgb(4, 142, 201);
    margin: 0 0 10px;
    text-decoration: none;
    display: block;
    transition: color 0.18s ease;
    line-height: 1.3;
}

.stories-card__name:hover {
    color: #383838;
}

.stories-card__desc {
    font-size: 0.9375rem;
    color: #383838;
    margin: 0;
    line-height: 1.55;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .stories__title {
        font-size: 1.375rem;
    }

    .stories__more {
        font-size: 0.8125rem;
        padding: 8px 16px;
    }

    .stories-card__name {
        font-size: 1.0625rem;
    }
}

@media (max-width: 576px) {
    .stories__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
