/*
 Theme Name:   Haus Gerbens Child
 Theme URI:    https://florian-schuett.de
 Description:  Haus Gerbens child theme
 Author:       Florian Schuett
 Author URI:   https://florian-schuett.de
 Template:     generatepress
 Version:      0.1
*/

.gericht {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gericht:last-child {
margin-bottom: 0;
}

@media (min-width: 768px) {

}

.gericht .gericht-infos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gericht .gericht-description {
    position: relative;
    flex: inherit;
    order: 1;
}

.gericht .gericht-dots {
width: 100%;
    display: block;
    position: relative;
    flex: 1;
    overflow: hidden;
}

.gericht .gericht-dots::after {
    content: '';
    width: 100%;
    display: block;
    border-bottom: 2px dotted #828282;
    position: absolute;
    bottom: 7px;
    transform: translate(4px,0);
}


.gericht .gericht-zusatztitel {
    margin-left: 5px;
}

.gericht-preis {
    display: flex;
  gap: 20px;
  order: 2;
}

.gericht-zutaten {
    width: 100%;
    order: 3;
    font-size: .9rem;
}

@media (max-width: 500px) {
   .gericht-preis {
        order: 3;
        font-weight: bold;
    }

    .gericht-zutaten {
        width: 100%;
        order: 2;
    }
}

.menue-titel {
    color: #b61f29;
}

.ueberschrift {
    margin-top: 10px;
  font-weight: bold;
  font-style: italic;
}