/*
|--------------------------------------------------------------------------
| Grundlayout
|--------------------------------------------------------------------------
*/

* {
    box-sizing: border-box;
}


body {

    margin: 0;

    background: #0b0b0f;

    color: #eee;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


.container {

    max-width: 1320px;

    margin: 0 auto;

    padding:
        0 20px;

}


/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

header {

    border-bottom:
        1px solid #292930;

    background: #101015;

}


.header {

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-size: 28px;

    font-weight: 900;

    letter-spacing: 2px;

}


.logo span {

    color: #e85b9f;

}


.age {

    font-size: 12px;

    color: #aaa;

    border:
        1px solid #3a3a42;

    border-radius: 20px;

    padding:
        7px 12px;

}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero {

    text-align: center;

    padding:
        45px 20px 30px;

}


.hero h1 {

    margin:
        0 0 12px;

    font-size: 42px;

}


.hero p {

    margin:
        0 auto;

    color: #aaa;

    max-width: 680px;

    line-height: 1.6;

}


/*
|--------------------------------------------------------------------------
| Webcam-Bild
|--------------------------------------------------------------------------
*/

.hero-image {

    margin:
        28px auto 34px;

    text-align: center;

}


.hero-image a {

    display: inline-block;

}


.hero-image img {

    display: block;

    width: 800px;

    max-width: 100%;

    height: auto;

    margin: 0 auto;

    border-radius: 10px;

}


/*
|--------------------------------------------------------------------------
| Abschnittstitel
|--------------------------------------------------------------------------
*/

.section-title {

    display: flex;

    align-items: center;

    gap: 10px;

    margin:
        10px 0 14px;

    font-size: 18px;

}


.badge {

    font-size: 10px;

    background: #e85b9f;

    padding:
        4px 7px;

    border-radius: 12px;

}


/*
|--------------------------------------------------------------------------
| Anbieter Grid
|--------------------------------------------------------------------------
*/

.grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

}


/*
|--------------------------------------------------------------------------
| Anbieterkarte
|--------------------------------------------------------------------------
*/

.card {

    background: #141419;

    border:
        1px solid #292930;

    border-radius: 10px;

    padding: 16px;


    display: grid;

    grid-template-columns:
        104px 1fr;

    column-gap: 18px;

    align-items: start;

}


.card.top {

    border-color:
        #6a3450;

    box-shadow:
        0 0 0 1px #27151f inset;

}


/*
|--------------------------------------------------------------------------
| Anbieterbild 104 x 104
|--------------------------------------------------------------------------
*/

.logo-box {

    width: 110px;
    height: 140px;
    border-radius: 10px;
    background: #24242b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #aaa;
    overflow: hidden;
    align-self: center;

}


.logo-box img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/*
|--------------------------------------------------------------------------
| Text
|--------------------------------------------------------------------------
*/

.listing-content {

    min-width: 0;

    text-align: left;

}


.name {

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 5px;

}


.desc {

    font-size: 13px;

    color: #999;

    line-height: 1.45;

}


.rating {

    font-size: 13px;

    color: #f2b4ce;

    margin-top: 8px;

    letter-spacing: 1px;

}


.rating span {

    color: #777;

    letter-spacing: 0;

    font-size: 11px;

    margin-left: 5px;

}


/*
|--------------------------------------------------------------------------
| Button zentriert
|--------------------------------------------------------------------------
*/

.button-row {

    width: 100%;

    display: flex;

    justify-content: center;

    margin-top: 24px;

}


.visit {

    display: inline-block;

    background: #e85b9f;

    padding:
        11px 22px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: bold;

    white-space: nowrap;

}


.visit:hover {

    opacity: .9;

}


/*
|--------------------------------------------------------------------------
| EINZIGE Werbefläche – echter Banner
|--------------------------------------------------------------------------
*/

.ad-banner {

    width: 100%;

    margin:
        24px 0;

    text-align: center;

    overflow: hidden;

    border-radius: 9px;

}


.ad-banner a {

    display: block;

    width: 100%;

}


.ad-banner img {

    display: block;

    width: 728px;

    max-width: 100%;

    height: auto;

    margin: 0 auto;

    border-radius: 7px;

}


/*
|--------------------------------------------------------------------------
| EINZIGER Werbeplatzhalter
|--------------------------------------------------------------------------
*/

.ad-placeholder {

    width: 100%;

    min-height: 92px;

    margin:
        24px 0;

    border:
        1px dashed #3b3b44;

    border-radius: 9px;

    background: #111116;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #666;

    font-size: 12px;

    letter-spacing: .5px;

}


/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
*/

.pagination {

    text-align: center;

    padding:
        30px 0 55px;

}


.page {

    display: inline-block;

    border:
        1px solid #33343d;

    padding:
        9px 13px;

    margin: 3px;

    border-radius: 6px;

    color: #aaa;

}


.page:hover {

    border-color:
        #e85b9f;

    color:
        #e85b9f;

}


.page.active {

    background:
        #e85b9f;

    color: #fff;

    border-color:
        #e85b9f;

}


/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

footer {

    border-top:
        1px solid #292930;

    padding:
        28px 20px;

    text-align: center;

    color: #777;

    font-size: 12px;

}


/*
|--------------------------------------------------------------------------
| Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {


    .hero h1 {

        font-size: 32px;

    }


    .grid {

        grid-template-columns:
            1fr;

    }


    .card {

        grid-template-columns:
            104px 1fr;

        column-gap: 14px;

    }


    .logo-box {

        width: 104px;

        height: 104px;

    }


    .button-row {

        justify-content:
            center;

    }


    .hero-image img {

        width: 800px;

        max-width: 100%;

    }

}
