﻿.banner-container {
    height: 64px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--clr-bg-secondary);
    mix-blend-mode: normal;
    box-shadow: 0px 4px 8px rgba(60, 60, 60, 0.1);
    padding: 12px 64px;
    z-index: 5;
}

.banner-details-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.banner-details-title {
    color: var(--clr-text-white);
    font-size: var(--font-size-body-03);
    font-weight: 600;
}

.banner-details-subtitle {
    color: var(--clr-text-white);
    font-size: var(--font-size-body-05);
    font-weight: 400;
    max-width: 600px;
    white-space: normal;
    overflow-wrap: break-word;
}

.banner-icons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.banner-icons {
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    padding: 0;
    height: 40px;
}

    .banner-icons > img {
        height: 40px;
        aspect-ratio: auto;
    }


@media (max-width: 992px) {
    .banner-details-subtitle {
        display: none;
    }
}
@media (max-width: 576px) {
    .banner-container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 16px 16px 12px 16px;
    }

    .banner-details-container {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 12px;
    }

    .banner-icons-container {
        width: 100%;
        justify-content: flex-start;
    }
}