/* =========================================================
   SNOGARD RACEROOM RACING CHALLENGE 2026
   ========================================================= */

.rrc-page {
    --rrc-bg: #090a0c;
    --rrc-bg-light: #101216;
    --rrc-card: #15171c;
    --rrc-card-light: #1a1d23;
    --rrc-red: #e30613;
    --rrc-red-dark: #a90008;
    --rrc-white: #ffffff;
    --rrc-text: #d1d4da;
    --rrc-muted: #858a94;
    --rrc-border: rgba(255, 255, 255, 0.09);

    background: var(--rrc-bg);
    color: var(--rrc-white);
    overflow: hidden;
    position: relative;
}

.rrc-page *,
.rrc-page *::before,
.rrc-page *::after {
    box-sizing: border-box;
}

.rrc-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   COMMON
   ========================================================= */

.rrc-section-kicker,
.rrc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;

    color: var(--rrc-red);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rrc-section-kicker::before,
.rrc-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--rrc-red);
}

.rrc-button {
    min-height: 52px;
    padding: 0 25px;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    border-radius: 3px;

    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.rrc-button:hover {
    transform: translateY(-2px);
}

.rrc-button-primary {
    background: var(--rrc-red);
    color: #fff !important;
    border: 1px solid var(--rrc-red);
}

.rrc-button-primary:hover {
    background: #ff0a18;
    border-color: #ff0a18;
}

.rrc-button-secondary {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.rrc-button-secondary:hover {
    border-color: #fff;
}


/* =========================================================
   INTRO
   ========================================================= */

.rrc-intro {
    position: relative;
    padding: 105px 0 115px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(227, 6, 19, .14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #090a0c 0%,
            #0d0f12 100%
        );
}

.rrc-intro::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
}

.rrc-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr);
    align-items: center;
    gap: 80px;
}

.rrc-intro h1 {
    margin: 0 0 28px;

    color: #fff;
    font-size: clamp(48px, 6vw, 86px);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.rrc-intro h1 span {
    color: var(--rrc-red);
}

.rrc-intro-text {
    max-width: 700px;
    margin: 0;

    color: var(--rrc-text);
    font-size: 18px;
    line-height: 1.7;
}

.rrc-intro-text strong {
    color: #fff;
}

.rrc-intro-highlight {
    margin: 22px 0 0;
    padding-left: 17px;

    border-left: 3px solid var(--rrc-red);

    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.rrc-intro-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 38px;
}

.rrc-partner {
    min-height: 260px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.rrc-partner::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.rrc-partner::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;

    border: 1px solid rgba(227,6,19,.25);
    border-radius: 50%;
}

.rrc-partner-inner {
    position: relative;
    z-index: 2;

    text-align: center;
}

.rrc-partner-inner > span {
    display: block;
    margin-bottom: 16px;

    color: var(--rrc-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.rrc-raceroom-logo {
    display: block;
    width: min(300px, 100%);
    object-fit: contain;
}


/* =========================================================
   CHALLENGE
   ========================================================= */

.rrc-challenge {
    padding: 115px 0;
    background: #fff;
    color: #111;
}

.rrc-challenge .rrc-section-kicker {
    color: var(--rrc-red);
}

.rrc-section-head {
    max-width: 750px;
    margin-bottom: 65px;
}

.rrc-section-head h2 {
    margin: 0 0 25px;

    color: #0b0c0e !important;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.rrc-section-head > p {
    max-width: 680px;
    margin: 0;

    color: #565b65;
    font-size: 18px;
    line-height: 1.7;
}

.rrc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.rrc-step {
    min-height: 260px;
    padding: 35px;

    border-right: 1px solid #ddd;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        background .25s ease,
        color .25s ease;
}

.rrc-step:last-child {
    border-right: 0;
}

.rrc-step:hover {
    background: #0b0c0e;
}
.rrc-step:hover h2,
.rrc-step:hover h3,
.rrc-step:hover p {
    color: #fff !important;
}

.rrc-step-number {
    display: block;

    color: var(--rrc-red);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .12em;
}

.rrc-step h3 {
    margin: 0 0 10px;
    color: #111 !important;
    font-size: 24px;
    font-weight: 900;
    transition: color .25s ease;
}

.rrc-step p {
    margin: 0;

    color: #686d75;
    font-size: 15px;
    line-height: 1.6;

    transition: color .25s ease;
}


/* =========================================================
   SCOREBOARD
   ========================================================= */

.rrc-scoreboard-section {
    position: relative;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(227, 6, 19, .12),
            transparent 30%
        ),
        #090a0c;
}

.rrc-scoreboard-head {
    margin-bottom: 70px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

.rrc-scoreboard-head h2 {
    margin: 0;

    color: #fff;
    font-size: clamp(48px, 6vw, 80px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.05em;
    text-transform: uppercase;
}

.rrc-scoreboard-head h2 span {
    color: var(--rrc-red);
}

.rrc-scoreboard-head p {
    max-width: 600px;
    margin: 25px 0 0;

    color: var(--rrc-muted);
    font-size: 16px;
    line-height: 1.7;
}

.rrc-scoreboard-meta {
    min-width: 220px;
    text-align: right;
}

.rrc-live {
    margin-bottom: 8px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rrc-live-dot {
    width: 8px;
    height: 8px;

    display: inline-block;

    background: var(--rrc-red);
    border-radius: 50%;

    box-shadow: 0 0 0 6px rgba(227,6,19,.12);

    animation: rrcPulse 1.8s infinite;
}

@keyframes rrcPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227,6,19,.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(227,6,19,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(227,6,19,0);
    }
}

.rrc-updated {
    color: #6f747e;
    font-size: 12px;
}

.rrc-updated strong {
    color: #aeb2ba;
}


/* =========================================================
   PODIUM
   ========================================================= */

.rrc-podium {
    margin-bottom: 35px;

    display: grid;
    grid-template-columns: 1fr 1.12fr 1fr;
    align-items: end;
    gap: 12px;
}

.rrc-podium-card {
    position: relative;
    min-height: 245px;
    padding: 40px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: #13151a;
    border: 1px solid var(--rrc-border);
}

.rrc-podium-card::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -45px;

    width: 160px;
    height: 160px;

    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
}

.rrc-place-1 {
    min-height: 290px;

    background:
        linear-gradient(
            135deg,
            rgba(227,6,19,.18),
            rgba(227,6,19,0) 50%
        ),
        #15171c;

    border-color: rgba(227,6,19,.45);
}

.rrc-position {
    position: absolute;
    right: 25px;
    top: 15px;

    color: rgba(255,255,255,.035);
    font-size: 100px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.08em;
}

.rrc-place-1 .rrc-position {
    color: rgba(227,6,19,.12);
}

.rrc-track-record {
    position: absolute;
    left: 0;
    top: 0;

    padding: 8px 14px;

    background: var(--rrc-red);

    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rrc-podium-label {
    position: relative;
    z-index: 2;

    margin-bottom: 8px;

    color: var(--rrc-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rrc-podium-name {
    position: relative;
    z-index: 2;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #fff;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.1;
    font-weight: 900;
}

.rrc-podium-time {
    position: relative;
    z-index: 2;

    margin-top: 15px;

    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .03em;
    font-variant-numeric: tabular-nums;
}

.rrc-place-1 .rrc-podium-time {
    color: var(--rrc-red);
    font-size: 29px;
}


/* =========================================================
   TABLE
   ========================================================= */

.rrc-table-wrapper {
    overflow: hidden;

    background: #101216;
    border: 1px solid var(--rrc-border);
}

.rrc-table-top {
    min-height: 72px;
    padding: 0 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid var(--rrc-border);
}

.rrc-table-top > span {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.rrc-table-top > strong {
    color: var(--rrc-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.rrc-table-scroll {
    overflow-x: auto;
}

.rrc-table {
    width: 100%;
    margin: 0 !important;

    border-collapse: collapse;

    color: #fff;
    background: transparent !important;
}

.rrc-table th {
    height: 52px;
    padding: 0 28px !important;

    color: #696e78 !important;
    background: #0c0e11 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--rrc-border) !important;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: left;
    text-transform: uppercase;
}

.rrc-table th:last-child {
    text-align: right;
}

.rrc-table td {
    height: 72px;
    padding: 0 28px !important;

    color: #fff !important;
    background: transparent !important;

    border: 0 !important;
    border-bottom: 1px solid var(--rrc-border) !important;

    font-size: 15px;
    vertical-align: middle;
}

.rrc-table tbody tr {
    transition: background .2s ease;
}

.rrc-table tbody tr:hover {
    background: rgba(255,255,255,.025);
}

.rrc-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.rrc-table-position {
    width: 100px;
}

.rrc-table-position span {
    width: 34px;
    height: 34px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,.04);
    border-radius: 3px;

    color: #848994;
    font-weight: 900;
}

.rrc-table-name {
    font-weight: 800;
}

.rrc-table-time {
    text-align: right;

    color: #fff !important;
    font-size: 18px !important;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
}

.rrc-table tbody tr:nth-child(1) .rrc-table-position span {
    background: var(--rrc-red);
    color: #fff;
}

.rrc-table tbody tr:nth-child(1) .rrc-table-time {
    color: var(--rrc-red) !important;
}

.rrc-loading,
.rrc-empty,
.rrc-error {
    height: 130px !important;
    text-align: center !important;
    color: #7f848d !important;
}


/* =========================================================
   FINAL
   ========================================================= */

.rrc-final {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #e30613,
            #a90008
        );

    text-align: center;
}

.rrc-final-inner {
    max-width: 850px;
    margin: 0 auto;
}

.rrc-final .rrc-section-kicker {
    color: #fff;
}

.rrc-final .rrc-section-kicker::before {
    background: #fff;
}

.rrc-final h2 {
    margin: 0;

    color: #fff;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.05em;
    text-transform: uppercase;
}

.rrc-final h2 span {
    color: #0b0c0e;
}

.rrc-final p {
    max-width: 600px;
    margin: 25px auto 35px;

    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.6;
}

.rrc-final .rrc-button-primary {
    background: #090a0c;
    border-color: #090a0c;
}

.rrc-final .rrc-button-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #090a0c !important;
}

.rrc-final-powered {
    margin-top: 60px;

    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .rrc-intro {
        padding: 80px 0;
    }

    .rrc-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rrc-partner {
        min-height: 180px;
        justify-content: flex-start;
    }

    .rrc-partner::before,
    .rrc-partner::after {
        display: none;
    }

    .rrc-partner-inner {
        text-align: left;
    }

    .rrc-steps {
        grid-template-columns: 1fr;
    }

    .rrc-step {
        min-height: 190px;
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .rrc-step:last-child {
        border-bottom: 0;
    }

    .rrc-scoreboard-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .rrc-scoreboard-meta {
        text-align: left;
    }

    .rrc-podium {
        grid-template-columns: 1fr;
    }

    .rrc-place-1 {
        order: 1;
    }

    .rrc-place-2 {
        order: 2;
    }

    .rrc-place-3 {
        order: 3;
    }

    .rrc-podium-card,
    .rrc-place-1 {
        min-height: 190px;
    }

}


@media (max-width: 600px) {

    .rrc-container {
        width: min(100% - 28px, 1200px);
    }

    .rrc-intro,
    .rrc-challenge,
    .rrc-scoreboard-section,
    .rrc-final {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .rrc-intro h1 {
        font-size: 47px;
    }

    .rrc-intro-text {
        font-size: 16px;
    }

    .rrc-intro-buttons {
        flex-direction: column;
    }

    .rrc-button {
        width: 100%;
    }

    .rrc-section-head {
        margin-bottom: 45px;
    }

    .rrc-section-head h2,
    .rrc-scoreboard-head h2 {
        font-size: 45px;
    }

    .rrc-step {
        padding: 30px 25px;
    }

    .rrc-podium-card {
        padding: 30px 25px;
    }

    .rrc-position {
        font-size: 80px;
    }

    .rrc-table-top {
        padding: 0 18px;
    }

    .rrc-table th,
    .rrc-table td {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .rrc-table-position {
        width: 65px;
    }

    .rrc-table-time {
        font-size: 15px !important;
    }

    .rrc-final h2 {
        font-size: 46px;
    }

}
.rrc-step-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.rrc-step-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(227, 6, 19, 0.18);
    background: rgba(227, 6, 19, 0.06);

    color: var(--rrc-red);
    border-radius: 4px;

    transition:
            background .25s ease,
            border-color .25s ease,
            color .25s ease,
            transform .25s ease;
}

.rrc-step-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.rrc-step:hover .rrc-step-icon {
    background: var(--rrc-red);
    border-color: var(--rrc-red);
    color: #fff;
    transform: translateY(-2px);
}
.location-info {
    color: var(--rrc-red);
    margin-top:5px;
}
/* =========================================================
   PRIZES
   ========================================================= */

.rrc-prizes {
    max-width: 700px;
    margin-top: 32px;
    margin-bottom: 28px;
}

.rrc-prizes-head {
    margin-bottom: 14px;

    display: flex;
    align-items: baseline;
    gap: 9px;

    color: var(--rrc-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rrc-prizes-head strong {
    color: #fff;
    font-size: 15px;
}

.rrc-prize-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

}
@media (min-width: 830px) {
    .rrc-prize-list {
        min-width: 800px;
    }
}

.rrc-prize {
    position: relative;
    min-height: 125px;
    padding: 18px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 4px;

    overflow: hidden;

    transition:
            transform .25s ease,
            border-color .25s ease,
            background .25s ease;
}

.rrc-prize:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, .45);
    background: rgba(255, 255, 255, .06);
}

.rrc-prize::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: rgba(255,255,255,.15);
}

.rrc-prize-first {
    background:
            linear-gradient(
                    135deg,
                    rgba(227, 6, 19, .16),
                    rgba(227, 6, 19, .03)
            );
    border-color: rgba(227, 6, 19, .4);
}

.rrc-prize-first::before {
    background: var(--rrc-red);
}

.rrc-prize-second::before {
    background: #b9bdc5;
}

.rrc-prize-third::before {
    background: #b87333;
}

.rrc-prize-place {
    margin-bottom: 6px;

    color: var(--rrc-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.rrc-prize-value {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.rrc-prize-first .rrc-prize-value {
    color: var(--rrc-red);
    font-size: 36px;
}

.rrc-prize-label {
    margin-top: 7px;

    color: #a7abb3;
    font-size: 11px;
    line-height: 1.3;
}


/* MOBILE */

@media (max-width: 600px) {

    .rrc-prize-list {
        grid-template-columns: 1fr;
    }

    .rrc-prize {
        min-height: 100px;

        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "place value"
            "label value";
        align-items: center;
        column-gap: 15px;
    }

    .rrc-prize-place {
        grid-area: place;
        margin: 0;
    }

    .rrc-prize-label {
        grid-area: label;
        margin: 3px 0 0;
    }

    .rrc-prize-value {
        grid-area: value;
        justify-self: end;
    }

}
/* =========================================================
   TEILNAHMEBEDINGUNGEN
   ========================================================= */

.rrc-rules {
    padding: 115px 0;

    background:
            linear-gradient(
                    180deg,
                    #f5f5f5 0%,
                    #ffffff 100%
            );

    color: #111;
}

.rrc-rules-head {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 60px;
}

.rrc-rules-head h2 {
    margin: 0;

    color: #0b0c0e;

    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;

    font-weight: 900;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.rrc-rules-head h2 span {
    color: var(--rrc-red);
}

.rrc-rules-head > p {
    max-width: 520px;
    margin: 0;

    color: #666b74;

    font-size: 17px;
    line-height: 1.7;
}


/* GRID */

.rrc-rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}


/* CARD */

.rrc-rule-card {
    position: relative;

    min-height: 310px;
    padding: 32px 28px;

    background: #fff;

    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    transition:
            background .25s ease,
            transform .25s ease;
}

.rrc-rule-number {
    display: block;
    margin-bottom: 45px;

    color: var(--rrc-red);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .15em;
}

.rrc-rule-card h3 {
    margin: 0 0 17px;

    color: #111;

    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;

    transition: color .25s ease;
}

.rrc-rule-card p {
    margin: 0 0 12px;

    color: #646a73;

    font-size: 14px;
    line-height: 1.65;

    transition: color .25s ease;
}

.rrc-rule-card strong {
    font-weight: 800;
}

.rrc-rule-card address {
    margin: 15px 0;

    color: #444951;

    font-size: 14px;
    line-height: 1.6;
    font-style: normal;

    transition: color .25s ease;
}

.rrc-rule-highlight {
    margin-top: 18px !important;

    color: var(--rrc-red) !important;
}


/* PREISE */

.rrc-rule-prizes {
    margin: 18px 0 0;
    padding: 0;

    list-style: none;
}

.rrc-rule-prizes li {
    padding: 8px 0;

    color: #5d626b;

    border-bottom: 1px solid rgba(0,0,0,.08);

    font-size: 13px;
    line-height: 1.5;

    transition: color .25s ease;
}

.rrc-rule-prizes li:last-child {
    border-bottom: 0;
}

.rrc-rule-card:hover .rrc-rule-prizes li {
    border-color: rgba(255,255,255,.1);
}


/* DETAILS */
.rrc-rules h2, .rrc-rules h3 {
    color:#444 !important;
}
.rrc-rules-details h2, .rrc-rules-details h3 {
    color:#fff !important;
}
.rrc-rules-bottom {
    margin-top: 35px;
}

.rrc-rules-details {
    overflow: hidden;

    background: #0d0f12;
    color: #fff;

    border-radius: 4px;
}

.rrc-rules-details summary {
    min-height: 72px;
    padding: 0 28px;

    display: flex;
    align-items: center;

    position: relative;

    cursor: pointer;

    color: #fff;

    font-size: 15px;
    font-weight: 800;

    list-style: none;
}

.rrc-rules-details summary::-webkit-details-marker {
    display: none;
}

.rrc-rules-details summary::after {
    content: "+";

    position: absolute;
    right: 28px;

    color: var(--rrc-red);

    font-size: 28px;
    font-weight: 400;
}

.rrc-rules-details[open] summary::after {
    content: "−";
}

.rrc-rules-details-content {
    padding: 10px 28px 35px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.rrc-rules-details-content h3 {
    margin: 28px 0 8px;

    color: #fff;

    font-size: 16px;
    font-weight: 900;
}

.rrc-rules-details-content p {
    max-width: 850px;
    margin: 0 0 12px;

    color: #a8adb6;

    font-size: 14px;
    line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .rrc-rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 750px) {

    .rrc-rules {
        padding: 75px 0;
    }

    .rrc-rules-head {
        grid-template-columns: 1fr;
        gap: 25px;

        margin-bottom: 40px;
    }

    .rrc-rules-head h2 {
        font-size: 44px;
    }

}


@media (max-width: 550px) {

    .rrc-rules-grid {
        grid-template-columns: 1fr;
    }

    .rrc-rule-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .rrc-rule-number {
        margin-bottom: 25px;
    }

    .rrc-rules-details summary {
        padding:
                0
                55px
                0
                20px;
    }

    .rrc-rules-details summary::after {
        right: 20px;
    }

    .rrc-rules-details-content {
        padding:
                5px
                20px
                30px;
    }

}
