/* ===== Drberg Home Banner ===== */

.drberg-homebanner {
    margin: 0 0 20px 0;
    width: 100%;
}

/* ===== Desktop ===== */
.drberg-homebanner--desktop {
    position: relative;
    display: block;
}

.drberg-homebanner--desktop .drberg-homebanner__image {
    display: block;
    width: 100%;
    height: auto;
}

/* Desktop button: overlaid on banner, left side, ~3x bigger than standard */
.drberg-homebanner__btn--desktop {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    background: #ffffff;
    color: #222222;
    border: none;
    border-radius: 50px;
    padding: 22px 52px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.drberg-homebanner__btn--desktop:hover {
    background: #f0f0f0;
    color: #000;
    text-decoration: none;
}

/* ===== Mobile ===== */
.drberg-homebanner--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.drberg-homebanner--mobile .drberg-homebanner__image {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile button: below the image, ~2x wider than standard */
.drberg-homebanner__btn--mobile {
    display: block;
    width: 80%;
    max-width: 320px;
    margin: 15px auto 5px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #A7C1A8;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.drberg-homebanner__btn--mobile:hover {
    background: #A7C1A8;
    color: #ffffff;
    text-decoration: none;
}
