.blog-related {
    margin: clamp(48px, 6vw, 80px) 0;
    padding-top: clamp(40px, 4vw, 56px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-related__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: clamp(24px, 3vw, 40px);
    max-width: 700px;
}

.blog-related__eyebrow {
    color: #6CC5FB;
    font-size: 11px;
    line-height: 1.2;
    font-weight: var(--md-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-related__title {
    margin: 0;
    color: var(--md-color-text-primary);
    font-size: clamp(24px, 2.4rem, 36px);
    line-height: 1.12;
    font-weight: var(--md-font-weight-semibold);
}

.blog-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2.4vw, 36px);
}

.blog-related-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.blog-related-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: var(--md-radius-sm);
    background:
        linear-gradient(135deg, rgba(81, 161, 217, 0.18) 0%, rgba(81, 161, 217, 0.02) 100%),
        rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 44px rgba(6, 10, 22, 0.28);
}

.blog-related-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-related-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(108, 197, 251, 0.18) 0%, rgba(108, 197, 251, 0) 70%);
}

.blog-related-card:hover .blog-related-card__image {
    transform: scale(1.05);
}

.blog-related-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.blog-related-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.4px;
}

.blog-related-card__category {
    color: #6CC5FB;
    font-weight: var(--md-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 11px;
}

.blog-related-card__sep {
    opacity: 0.5;
}

.blog-related-card__date {
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--md-font-weight-light);
}

.blog-related-card__title {
    margin: 0;
    color: var(--md-color-text-primary);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.32;
    font-weight: var(--md-font-weight-semibold);
    text-wrap: balance;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.45s ease;
    display: inline;
}

.blog-related-card:hover .blog-related-card__title {
    background-size: 100% 1px;
}

@media (max-width: 991.98px) {
    .blog-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .blog-related__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
