.card {
    width: 250px;
    height: 150px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    border: 3px solid transparent;
    text-decoration: none;
    user-select: none;
    z-index: 0;
    letter-spacing: 0;
    transform-style: preserve-3d;
    transition: transform 0.13s ease-out, box-shadow 0.13s ease-out, border-color 0.13s ease-out, font-size 0.13s ease;
}

.card:hover {
    position: relative;
    border-color: #f5f5f7;
    z-index: 1;
}

.card:hover .card-title, 
.card:hover .card-information {
    transform: translateZ(12px);
}

.card-title {
    flex: 0 0 38.2%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    line-height: 1.25;
    font-family: SF Pro SC, SF Pro Display, SF Pro Icons, PingFang SC, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.card-name {
    font-size: 14px;
    color: #1d1d1f;
    font-weight: bold;
}

.card-host {
    font-size: 10px;
    color: #6e6e73;
}

.card-information {
    flex: 0 0 61.8%;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    overflow-y: auto;
    line-height: 1.3333733333;
    font-family: SF Pro SC, SF Pro Text, SF Pro Icons, PingFang SC, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.card-description {
    flex: 0 0 61.8%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    box-sizing: border-box;
    font-size: 12px;
    color: #000000b8;
}

.card-favicon {
    flex: 0 0 38.2%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.card-favicon img {
    width: 38px;
    height: 38px;
    position: absolute;
    bottom: 0;
    right: 0;
}
