/* Royal Routes — Blog listing & detail */

.rr-blog-list__items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rr-blog-block {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8ecef;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.rr-blog-block__thumb {
    display: block;
    height: 100%;
    min-height: 260px;
    overflow: hidden;
}

.rr-blog-block__thumb img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rr-blog-block:hover .rr-blog-block__thumb img {
    transform: scale(1.04);
}

.rr-blog-block__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 36px 40px;
}

.rr-blog-block__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rr-blog-block__date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 8px 10px;
    background: #eef4fb;
    border-radius: 8px;
    color: #123a73;
}

.rr-blog-block__date-day {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.rr-blog-block__date-month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rr-blog-block__category {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rr-blog-block__title {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    line-height: 1.35;
}

.rr-blog-block__title a {
    color: #0f172a;
    text-decoration: none;
}

.rr-blog-block__title a:hover {
    color: #123a73;
}

.rr-blog-block__excerpt {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
}

.rr-blog-detail__featured {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

.rr-blog-detail__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

.rr-blog-detail__content {
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
}

.rr-blog-detail__content h3 {
    margin: 28px 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #123a73;
}

.rr-blog-detail__content p {
    margin-bottom: 16px;
}

.rr-blog-detail__content ul {
    margin: 0 0 20px;
    padding-left: 1.25rem;
}

.rr-blog-detail__content li {
    margin-bottom: 8px;
}

.rr-blog-detail__back {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e8ecef;
}

@media (max-width: 767px) {
    .rr-blog-block__body {
        padding: 24px 20px;
    }

    .rr-blog-block__thumb {
        min-height: 200px;
    }

    .rr-blog-block__thumb img {
        min-height: 200px;
    }
}
