/* ===== Blog / articles list + details ===== */
.blog-page,
.blog-details-page {
    padding: 70px 0 90px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 183, 84, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.blog-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.06);
}

.blog-card__date {
    position: absolute;
    top: 14px;
    right: 14px;
    min-width: 54px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(27, 27, 27, 0.86);
    border: 1px solid rgba(245, 183, 84, 0.5);
    color: #f5b754;
    text-align: center;
    line-height: 1.2;
    backdrop-filter: blur(6px);
}

.blog-card__date strong {
    display: block;
    font-size: 16px;
}

.blog-card__date span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.blog-card__body {
    padding: 20px 22px 24px;
}

.blog-card__title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
}

.blog-card__title a {
    color: #fff;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: #f5b754;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5b754;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.blog-card__link:hover {
    color: #fff;
}

.blog-details-article {
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
}

.blog-details-article__media img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.blog-details-article__body {
    padding: 28px 30px 34px;
}

.blog-details-article__body h1 {
    color: #fff;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-details-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 22px;
}

.blog-details-article__meta i {
    color: #f5b754;
    margin-left: 6px;
}

.blog-details-article__content {
    color: rgba(255, 255, 255, 0.78);
    line-height: 2;
    font-size: 15px;
}

.blog-details-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-related {
    margin-top: 48px;
}

.blog-related .section-head {
    text-align: center;
    margin-bottom: 28px;
}

@media (max-width: 991.98px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
