.single-host-bg {
    background: var(--main-bg) url("../img/host-bg.jpg") center;
}

.host-logo {
    margin-bottom: 3.2rem;
    text-align: center;
}

.host-logo img {
    width: 12rem;
    height: 12rem;
    border-radius: 0.5rem;
}

.host-info {
    margin-top: 5.2rem;
}

.host-info-item {
    margin-bottom: 3.2rem;
}

.social {
    margin-top: 0.8rem;
}

.social a img {
    transition: transform var(--transition-time-default);
    opacity: 0.7;
}

.social a:hover img {
    transform: translate(0, -0.4rem);
}

.social-icon {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 1.6rem;
}

.host-fleets .calendar-event .event-time {
    font-size: 1.4rem;
    font-weight: normal;
}

.host-fleets .calendar-event .event-date {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.host-fc {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem;
    box-sizing: border-box;
}

.host-fc:hover .fc-profile-image {
    border-radius: 50% 0.5rem 50% 50%;
}

.host-fc:hover .host-fc-name {
    color: var(--purple-light);
}

.fc-profile-image {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    border: 0.2rem solid var(--dark-grey-alt);
    transition: border-radius var(--transition-time-default);
}

.host-fc-roster {
    margin-top: 3.2rem;
}

.host-fc-name {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-default);
    transition: color var(--transition-time-default);
}

.host-fc-corporation {
    font-size: 1.2rem;
    color: var(--text-darker)
}

.host-fc-list {
    margin-top: 0.8rem;
}

@media screen and (max-width: 767px) {
    .host-fc:not(:last-child) {
        margin-bottom: 0.8rem;
    }
}

@media screen and (min-width: 768px) {
    .host-about-wrap {
        display: flex;
    }

    .host-logo {
        margin-right: 3.2rem;
    }

    .host-logo img {
        width: 10rem;
        height: 10rem;
    }

    .host-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0;
        grid-row-gap: 0;
    }

    .host-info-media {
        margin-left: 13.2rem;
    }

    .host-fleets .calendar-events {
        min-height: inherit;
    }

    .host-fc-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0.8rem;
        grid-row-gap: 0.8rem;
    }

    .host-fc-name {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1024px) {
    .host-logo {
        margin-right: 4rem;
    }

    .host-info-media {
        margin-left: 16rem;
    }

    .host-logo img {
        width: 12rem;
        height: 12rem;
    }

    .host-info {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }

    .fc-profile-image {
        width: 6.4rem;
        height: 6.4rem;
    }
}

@media screen and (min-width: 1280px) {

    .host-fc-corporation {
        font-size: 1.4rem;
    }

    .host-fc-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
