/* =========================================================
   AUTOREN
   ========================================================= */

.rb-authors {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(320px, 520px)
        );

    justify-content: center;

    gap: 28px;

    width: 100%;

    margin: 40px 0;

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   Autorenkarte
   --------------------------------------------------------- */

.rb-author-card {
    min-width: 0;

    padding: 24px;

    background: #111;
    border: 1px solid #333;

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   Inhalt
   --------------------------------------------------------- */

.rb-author-content {
    min-width: 0;
}


/* ---------------------------------------------------------
   Autorenname
   --------------------------------------------------------- */

.rb-author-name {
    margin: 0 0 8px;

    font-size: 1.5rem;
    line-height: 1.2;
}

.rb-author-name a {
    color: #fff;

    text-decoration: none;
}

.rb-author-name a:hover {
    color: #ccc;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


/* ---------------------------------------------------------
   Autorenstatistik
   --------------------------------------------------------- */

.rb-author-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 8px;

    color: #aaa;

    font-size: 1.05rem;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   Zuletzt bewertetes Restaurant
   --------------------------------------------------------- */

.rb-author-latest {
    margin-bottom: 18px;

    color: #b5b5b5;

    font-size: 1.05rem;
    line-height: 1.4;
}

.rb-author-latest a {
    color: #d0d0d0;

    text-decoration: none;
}

.rb-author-latest a:hover {
    color: #fff;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ---------------------------------------------------------
   Autorenbeschreibung
   --------------------------------------------------------- */

.rb-author-bio {
    color: #e6e6e6;

    font-size: 1.15rem;
    line-height: 1.65;
}

.rb-author-bio p {
    margin: 0;
}


/* ---------------------------------------------------------
   Link zum Autorenprofil
   --------------------------------------------------------- */

.rb-author-profile-link {
    display: inline-block;

    margin-top: 18px;

    color: #aaa;

    font-size: 1rem;
    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.15s ease;
}

.rb-author-profile-link:hover {
    color: #fff;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .rb-authors {
        grid-template-columns: 1fr;

        max-width: 720px;
    }

}


@media (max-width: 700px) {

    .rb-authors {
        width: 100%;

        gap: 20px;

        margin-top: 28px;
        margin-bottom: 28px;
    }

    .rb-author-card {
        padding: 20px;
    }

    .rb-author-name {
        font-size: 1.4rem;
    }

    .rb-author-bio {
        font-size: 1rem;
    }

}
/* =========================================================
   AUTORENPROFIL
   ========================================================= */

.rb-author-profile {
    margin: 35px 0 60px;
}


/* ---------------------------------------------------------
   Kopfbereich
   --------------------------------------------------------- */

.rb-author-profile-header {
    display: block !important;

    padding-bottom: 38px;

    border-bottom: 1px solid #333;
}


/* Name */

.rb-author-profile-name {
    margin: 0 0 20px !important;

    font-size: 2.2rem;
    line-height: 1.15;
}


/* ---------------------------------------------------------
   Anzahl Rezensionen + Durchschnitt
   --------------------------------------------------------- */

.rb-author-profile-stats {
    display: block !important;

    margin: 0 0 7px !important;
    padding: 0 !important;

    color: #aaa;

    font-size: 1.05rem;
    line-height: 1.45;
}


/* ---------------------------------------------------------
   Zuletzt bewertet
   --------------------------------------------------------- */

.rb-author-profile-latest {
    display: block !important;

    margin: 0 0 22px !important;
    padding: 0 !important;

    color: #b5b5b5;

    font-size: 1.05rem;
    line-height: 1.45;
}


.rb-author-profile-latest a {
    display: inline !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #d0d0d0;

    font-size: inherit !important;
    line-height: inherit !important;

    text-decoration: underline;
    text-underline-offset: 3px;

    white-space: normal;
}


.rb-author-profile-latest a:hover {
    color: #fff;
}


/* ---------------------------------------------------------
   Autorenbeschreibung
   --------------------------------------------------------- */

.rb-author-profile-bio {
    display: block !important;

    max-width: 800px;

    margin: 0 !important;
    padding: 0 !important;

    color: #e6e6e6;

    font-size: 1.15rem;
    line-height: 1.65;
}


.rb-author-profile-bio p {
    margin: 0 0 18px !important;
}


.rb-author-profile-bio p:last-child {
    margin-bottom: 0 !important;
}


/* ---------------------------------------------------------
   Rezensionen
   --------------------------------------------------------- */

.rb-author-profile-reviews {
    margin-top: 42px;
}


.rb-author-profile-reviews > h2 {
    margin: 0 0 20px;

    font-size: 1.65rem;
    line-height: 1.2;
}


.rb-author-review-list {
    border-top: 1px solid #333;
}


.rb-author-review {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 25px 0;

    border-bottom: 1px solid #333;
}


.rb-author-review-main {
    min-width: 0;
}


.rb-author-review h3 {
    margin: 0 0 6px;

    font-size: 1.5rem;
    line-height: 1.2;
}


.rb-author-review h3 a {
    color: #fff;

    text-decoration: none;
}


.rb-author-review h3 a:hover {
    color: #ccc;
}

.rb-author-review-restaurant {
    margin: 0 0 5px;
    padding: 0;

    font-size: 1.05rem;
    line-height: 1.45;
}

.rb-author-review-restaurant a {
    display: inline-block;

    margin: 0;
    padding: 0;

    color: #c2c2c2;

    font-size: inherit;
    line-height: inherit;

    white-space: normal;
    text-decoration: none;
}

.rb-author-review-restaurant a:hover {
    color: #fff;
}


.rb-author-review-date {
    margin: 0 !important;

    color: #aaa;

    font-size: 0.95rem;
    line-height: 1.4;
}


.rb-author-review-score {
    flex: 0 0 auto;

    color: #fff;

    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.1;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .rb-author-profile-name {
        font-size: 2.2rem;
    }


    .rb-author-profile-bio {
        font-size: 1.1rem;
    }


    .rb-author-review {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .rb-author-review-score {
        font-size: 1.3rem;
    }

}

