/* RRJ Sponsor Banner Display */

.rrj-sponsor-wrap {
    max-width: 1180px;
    margin: 28px auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rrj-sponsor-box {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}

.rrj-sponsor-label {
    display: inline-flex;
    align-items: center;
    background: #fff7ed;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.rrj-sponsor-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.rrj-sponsor-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

.rrj-sponsor-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.rrj-sponsor-text {
    display: block;
    color: #1d4ed8;
    font-weight: 800;
    font-size: 18px;
    padding: 16px;
    background: #eef4ff;
    border-radius: 12px;
}

@media(max-width: 900px) {
    .rrj-sponsor-wrap {
        grid-template-columns: 1fr;
        margin: 20px auto;
    }

    .rrj-sponsor-box img {
        height: 220px;
    }
}
