.cardContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.bioContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 2);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 10px 18px 0 rgba(240, 126, 19, 1);
}

.dogCardContainer {
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
    border-radius: 2%;
}

.dogBioContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 1 1 100px;
    background-color:#7AA37A;
    border-radius: 2% 2% 0 0;
}

.dogSummaryContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 1 1 100px;
    background-color:#7AA37A;
    border-radius: 2% 2% 0 0;
}

.dogCardMug {
    background-color:#7AA37A;
    color:#F5F5F5;
    text-align:center;
    padding: 0.5rem;
    border-radius: 2% 0 0 0;
}

.dogCardSummary {
    background-color:#7AA37A;
    color:#F5F5F5;
    text-align:left;
    padding: 0.5rem;
    border-radius: 0 2% 0 0;
}

.dogCardLabel {
    color:#0c100c;
    font-weight:bold;
}

.dogCardStory {
    background-color: #F5F5F5;
    color: #0C100C;
    text-align: left;
    padding: 0.5rem;
}

.dogCardVideos,
.dogCardPhotos {
    display:flex;
    flex-direction: column;
    background-color: #F5F5F5;
}

.dogCardAppLink {
    background-color: #CCCC99;
    color: #0C100C; 
    text-align: center; 
    padding: 0.5rem;
    border-radius: 0 0 2% 2%;
}

.noDogsNotice {
    display: flex;
    flex-direction: row;
    background-color: #F5F5F5;
    color: #0C100C;
    text-align: left;
    padding: 0.5rem;
}
.noDogsNoticeMug {
    margin: 0.5rem 1rem 0.5rem 0;
}
