:root {
    --bs-font-sans-serif: 'Inter', sans-serif;
    --bs-body-color: #1d1d1f;
    --bs-nav-link-font-weight: 600;
    --bs-nav-link-hover-color: var(--orange);
    --bs-navbar-hover-color: var(--orange);
    --bs-link-hover-color-rgb: var(--orange);
    --black: #1d1d1f;
    --orange: #f0952b;
    --white: #fff;
    --bs-card-bg: #f5f5f7;
    --bs-border-color: #aaaaaa;
    --bs-navbar-nav-link-padding-x: 1rem;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

.g-4r {
    --bs-gutter-x: 4rem;
}

.codely {
    --colorStart: #EE33FF;
    --colorEnd: #00D4FF;
    background: linear-gradient(120deg, var(--colorStart), var(--colorEnd));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--orange);
}

.nav-link {
    font-weight: 600;
    color: var(--bs-body-color);
}

.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid #aaaaaa;
}

.nav-logo-img {
    max-height: 60px;
}

.footer {
    border-top: 6px solid var(--orange);
    background-color: #eee;
    color: var(--black);
    padding: 60px 0 30px;
}

.footer .bi {
    color: var(--orange);
}

footer li {
    list-style: none;
}

section {
    padding: 4.5rem 0;
}

.section-headline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.doctor-wrapper {
    margin-bottom: 4rem;
}


.doctor-buttons {}

.doctor-role {
    font-size: 1.2rem;
    color: #6B7A6C;
    font-weight: 500;
    margin-bottom: 2rem;
}

.doctor-thumbnail {
    border-radius: 0.25rem;
    max-width: 100%;
}

.doctor-consultation {
    color: #6e6e73;
    margin: 16px 0;
    font-weight: 600;
    margin-bottom: 3rem;
}

.btn-more {
    border-color: #1d1d1f;
    border-width: 1px;
}

.btn-more:hover {
    border-color: var(--orange);
    background: var(--orange);
}


.member,
.hero {
    position: relative;
}

.member.job {
    background: var(--orange);
    padding: 1rem;
    border-radius: 0.25rem;
    height: 100%;
}

.member-portrait:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: transform 300ms ease-in-out, opacity 200ms 100ms ease-in-out;
    border-radius: 0.25rem;
}

.member-information {
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.member-details {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    z-index: 2;
    opacity: 0;
    transition: transform 300ms ease-in-out, opacity 200ms 100ms ease-in-out;
}

.member-role {
    font-size: 14px;
}

.member-icon {
    align-self: end;
    display: flex;
}

.member-portrait {
    width: 100%;
}

.member:hover .member-details {
    opacity: 1;
}

.member:hover .member-portrait:before {
    opacity: 1;
}

.job-information:first-of-type {
    margin-bottom: 12px;
}

.get-teammember {
    color: var(--white)
}

.get-teammember:hover {
    text-decoration: underline;
    color: var(--white);
}

.hero-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 1;
    transition: transform 300ms ease-in-out, opacity 200ms 100ms ease-in-out;
}

.hero-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.hero-information {
    padding: 1rem;
    position: absolute;
    bottom: 4rem;
    width: 100%;
    color: #fff;
}

.doctor-image {
    border-radius: 0.5rem;
    width: 100%;
}

.doctor-detail p {
    line-height: 1.6;
}

.doctor-detail h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.btn-order {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050; /* über anderen Inhalten */
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background: var(--orange);
    border: none;
  }

  .btn-order:hover {
    background: var(--black);
  }

.breadcrumb {
    display: inline-flex;
    font-weight: 600;
    flex-wrap: wrap;
    padding: 0.5rem 1.25rem;
    margin-bottom: 0;
    list-style: none;
    background-color: rgba(55, 85, 190, .1);
    border-radius: 200rem;
}

.breadcrumb-item {
    height: 1.5rem;
    display: flex;
    align-items: center;
    font-size: .875rem;
}

.breadcrumb-item a:not(:hover) {
    opacity: .75;
}

.breadcrumb-item a {
    transition: opacity .1s linear;
}

.card-body {
    background: #eee;
    padding: 1.75rem;
    border-radius: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.page-content p:not(:last-child) {
    line-height: 1.6rem;
    margin-bottom: 1.5rem;
}

.block-paragraph ul li {
    margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
    .doctor-thumbnail {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .doctor-wrapper {
        margin-bottom: 8rem;
    }

    .key-steps {
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .key-steps dt {
        width: 25%;
        display: inline-block;
        font-weight: 500;
        vertical-align: top;
    }

    .key-steps dd {
        width: 74%;
        display: inline-block;
        vertical-align: top;
    }
}