.dogs-header {
    display: flex;

    align-items: center;

    margin-bottom: 25px;
}


.dogs-header-icon {
    width: 48px;
    height: 48px;

    margin-right: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--refuge-blue);

    background: var(--refuge-blue-light);

    border: 1px solid #c6ddff;

    border-radius: 50%;

    font-size: 21px;
}


.dogs-header h2 {
    margin: 0;

    font-size: 25px;

    font-weight: 700;
}


.dogs-header-line {
    width: 90px;

    height: 3px;

    margin-top: 8px;

    background: var(--refuge-blue);

    border-radius: 3px;
}


/* =========================================================
   DOG CARD
   ========================================================= */

.dog-card {
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e5e8eb;

    border-radius: 10px;

    box-shadow:
            0 3px 12px rgba(0, 0, 0, .06);
}


.dog-card:hover {
    transform: translateY(-3px);

    box-shadow:
            0 8px 25px rgba(0, 0, 0, .11);
}


/* =========================================================
   DOG IMAGE
   ========================================================= */

.dog-image {
    height: 190px;

    position: relative;

    overflow: hidden;

    background: #e9ecef;
}


.dog-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}

.dog-image img.center-top {
    object-position: center top;
}

.dog-image img.center-bottom {
    object-position: center top;
}


.dog-card:hover .dog-image img {
    transform: scale(1.04);
}


.dog-breed {
    position: absolute;

    top: 12px;
    right: 12px;

    padding: 5px 10px;

    color: #fff;

    background: var(--refuge-blue);

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   DOG BODY
   ========================================================= */

.dog-body {
    padding: 17px;
}


.dog-name-row {
    display: flex;

    align-items: baseline;

    flex-wrap: wrap;

    margin-bottom: 12px;
}


.dog-name {
    margin-right: 10px;

    color: var(--text-dark);

    font-size: 22px;

    font-weight: 700;
}


.dog-gender {
    color: var(--text-muted);

    font-size: 14px;
}


.dog-gender i {
    margin-right: 3px;
}


.dog-details {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    margin-bottom: 17px;

    color: var(--text-muted);

    font-size: 13px;
}


.dog-detail {
    display: flex;

    align-items: center;
}


.dog-detail i {
    margin-right: 6px;

    color: var(--refuge-blue);
}


.dog-detail + .dog-detail:before {
    content: "•";

    margin: 0 12px;

    color: #adb5bd;
}


/* =========================================================
   PROFILE BUTTON
   ========================================================= */

.dog-button {
    display: block;

    width: 100%;

    padding: 7px 12px;

    color: var(--refuge-blue);

    background: #fff;

    border: 1px solid var(--refuge-blue);

    border-radius: 20px;

    text-align: center;

    font-size: 13px;

    font-weight: 600;
}


.dog-button:hover {
    color: #fff;

    background: var(--refuge-blue);

    text-decoration: none;
}


/* =========================================================
   BOTTOM INFORMATION
   ========================================================= */

.dogs-information {
    margin-top: 25px;

    padding: 16px;

    display: flex;

    align-items: center;
}


.dogs-information-icon {
    width: 48px;
    height: 48px;

    margin-right: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--refuge-blue);

    background: var(--refuge-blue-light);

    border: 1px solid #c6ddff;

    border-radius: 50%;

    font-size: 20px;
}


.dogs-information-text {
    flex: 1;

    color: #495057;

    font-size: 13px;

    line-height: 1.5;
}


.dogs-information-text strong {
    display: block;

    color: var(--text-dark);

    font-size: 14px;
}


.appointment-button {
    margin-left: 20px;

    padding: 11px 17px;

    display: inline-flex;

    align-items: center;

    white-space: nowrap;

    color: #fff;

    background: var(--refuge-red);

    border-radius: 7px;

    font-size: 13px;

    font-weight: 600;
}


.appointment-button i {
    margin-right: 8px;
}


.appointment-button:hover {
    color: #fff;

    background: var(--refuge-red-dark);

    text-decoration: none;
}

@media (max-width: 767px) {
    .dog-image {
        height: 220px;
    }


    .dogs-information {
        align-items: flex-start;

        flex-wrap: wrap;
    }


    .dogs-information-text {
        min-width:
                calc(100% - 63px);
    }


    .appointment-button {
        width: 100%;

        margin-top: 15px;
        margin-left: 0;

        justify-content: center;
    }


    .sidebar-menu {
        grid-template-columns: 1fr;
    }

}

.card-img-right {
    display: block;
}