.news-related {
    padding: 60px 0;
    background: #fafafa;
}

.related-title {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.related-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    margin-top: 10px;
}

.related-category {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.related-info h3 {
    font-size: 15px;
    font-weight: 500;
}

.form-check {
    margin-bottom: 18px;
}

.form-check label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}