/* Extracted from best-paper-awards-list.php.
   Linked from that same file so the cascade order is unchanged. */

.rl-section {
           padding: 20px 0px 30px;
    background-color: #fefdfb;
    }

    .rl-title {
        text-align: center;
        color: #333;
        font-weight: 800;
        margin-bottom: 40px;
        text-transform: uppercase;
    }

    .rl-title span {
        color: #8B0000;
        border-bottom: 3px solid #C5A036;
    }

    .rl-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 5px;
            height: 325px;
    margin-bottom: 20px;    
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
        overflow: hidden;
    }

    .rl-card:hover {
        transform: translateY(-5px);
        border-color: #C5A036;
        box-shadow: 0 8px 25px rgba(139, 0, 0, 0.1);
    }

    .rl-top-border {
        height: 5px;
        background: linear-gradient(to right, #8B0000, #C5A036);
    }

    .rl-content {
        padding: 25px;
    }

    .rl-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .rl-id {
        background: #8B0000;
        color: #fff;
        padding: 3px 12px;
        border-radius: 3px;
        font-weight: 700;
        font-size: 12px;
    }

    .rl-meta {
        font-size: 14px;
        color: #666;
        font-weight: 600;
    }

    .rl-award-label {
        color: #C5A036;
        font-weight: 800;
        font-size: 11px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .rl-winner {
        font-size: 18px;
        font-weight: 800;
        color: #111;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .rl-paper-title-box {
        background: #fffcf5;
        border-left: 4px solid #C5A036;
        padding: 12px;
        margin-bottom: 15px;
    }

    .rl-paper-title-box strong {
        font-size: 10px;
        color: #8B0000;
        text-transform: uppercase;
        display: block;
        margin-bottom: 4px;
    }

    .rl-paper-title-box p {
        font-size: 14px;
        font-weight: 700;
        color: #333;
        margin: 0;
        line-height: 1.5;
    }

    .rl-contribution {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding-top: 15px;
        border-top: 1px solid #f5f5f5;
    }

    .rl-gold {
        color: #C5A036;
        font-size: 18px;
        margin-right: 2px;
    }
     .rl-grey {
        color: #666;
        font-size: 16px;
        margin-right: 2px;
    }

    .rl-contribution p {
        font-size: 13px;
        color: #555;
        font-weight: 600;
        margin: 0;
        line-height: 1.4;
    }

    .rl-btn {
        display: inline-block;
        padding: 12px 35px;
        border: 2px solid #8B0000;
        color: #8B0000 !important;
        text-transform: uppercase;
        font-weight: 800;
        text-decoration: none;
        border-radius: 3px;
        transition: 0.3s;
    }

    .rl-btn:hover {
        background: #8B0000;
        color: #fff !important;
    }
    @media(max-width: 768px){
        .rl-card {
            height: auto !important;
        }
    }
