/* Related Items Section */
.related-items {
    padding: 50px 0;
    background: #f8f9fc;
    margin-top: 40px;
}

.related-items .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.related-title {
    font-size: 24px;
    color: #304169;
    margin: 0 0 30px 0;
    font-weight: 700;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(48, 65, 105, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(48, 65, 105, 0.15);
}

.related-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f0f3fa;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-image .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(247, 134, 119, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-image .play-icon svg {
    margin-left: 3px;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f3fa 0%, #e4e9f2 100%);
}

.related-content {
    padding: 15px 18px 18px;
}

.related-content h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    color: #304169;
    line-height: 1.4;
}

.related-type {
    font-size: 12px;
    color: #f78677;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-items {
        padding: 40px 0;
    }

    .related-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .related-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .related-items .container {
        padding: 0 15px;
    }
}
