.sg-related-news {
    margin-top: 76px;
    padding-top: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sg-related-news-head {
    max-width: 860px;
    margin-bottom: 36px;
}

.sg-related-news-head > span,
.sg-related-service > span {
    display: inline-block;
    margin-bottom: 14px;
    color: #dc2d17;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sg-related-news-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.sg-related-news-head p {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.65;
}

.sg-related-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sg-related-news-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 25px;
    background: #111111;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.sg-related-news-card:hover {
    border-color: rgba(220, 45, 23, 0.55);
    transform: translateY(-6px);
}

.sg-related-news-card > a {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: #ffffff;
    text-decoration: none;
}

.sg-related-news-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #1b1b1b;
}

.sg-related-news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sg-related-news-card:hover img {
    transform: scale(1.035);
}

.sg-related-news-content {
    display: flex;
    min-height: 225px;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.sg-related-news-content > span {
    margin-bottom: 14px;
    color: #dc2d17;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sg-related-news-content h3 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.sg-related-news-content strong {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.sg-related-news-card:hover .sg-related-news-content strong {
    color: #dc2d17;
}

.sg-related-service {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 30px 34px;
    border-radius: 25px;
    background: #dc2d17;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.28s ease, transform 0.28s ease;
}

.sg-related-service:hover {
    background: #c82412;
    color: #ffffff;
    transform: translateY(-4px);
}

.sg-related-service > span {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.sg-related-service h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: clamp(25px, 2.8vw, 38px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.sg-related-service p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.55;
}

.sg-related-service > strong {
    white-space: nowrap;
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .sg-related-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-related-service {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 767px) {
    .sg-related-news {
        margin-top: 54px;
        padding-top: 54px;
    }

    .sg-related-news-grid {
        grid-template-columns: 1fr;
    }

    .sg-related-news-content {
        min-height: 190px;
    }

    .sg-related-service {
        padding: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sg-related-news-card,
    .sg-related-news-image img,
    .sg-related-service {
        transition: none;
    }
}
