.tva-footer-container {
	width: 100%;
    background-color: #16191e;
    color: #fff;
    border-top: 10px solid var(--tva-primary-color);
}

.tva-footer__row {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.tva-footer__row__col {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tva-footer__row.row--1 .col--1 {
	width: 30%;
}

.tva-footer__row.row--1 .col--2 {
	width: 70%;
    align-items: center;
}

.tva-footer-logo {
	display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo__image {
	max-width: 140px;
}

.logo__sub {
    font-size: 0.5rem;
	width: fit-content;
    color: rgb(170, 170, 170);
}

.tva-footer-title {
	font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    font-weight: bold;
}

.tva-footer__row.row--2 .col--1, .tva-footer__row.row--2 .col--2 {
	width: 50%;
    display: grid;
    align-items: start;
    grid-gap: 4px;
}

.tva-footer__row.row--2 .col--1 {
    grid-template-columns: 1fr 1fr 1fr;
}

.tva-footer__row.row--2 .col--2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tva-footer-infobox {
	display: flex;
    flex-direction: column;
}

.infobox__title {
	text-align: center;
    font-weight: bold;
    font-size: 1rem;
}

.infobox__content {
	color: rgb(170, 170, 170);
    overflow: hidden;
    padding-left: 20px;
    font-size: 0.9rem;
}

.infobox__content a {
	color: rgb(170, 170, 170);
}

.infobox__content a:hover {
	color: var(--tva-primary-color);
}

.infobox__content ul {
	list-style: disc;
    margin: 0;
}

@media (max-width: 768px) { 
    .tva-footer__row {
        margin-bottom: 10px;
    }
    .logo__image {
        max-width: 60px;
    }

    .logo__sub {
        font-size: 0.5rem;
        width: fit-content;
        color: rgb(170, 170, 170);
    }
    
    .tva-footer-title {
        font-size: 1rem;
        line-height: 1;
        text-align: center;
        font-weight: bold;
    }

    .infobox__content {
        display: none;
        padding: 10px;
    }

    .infobox__title {
        cursor: pointer;
        position: relative;
        padding-right: 20px;
        font-size: 0.8rem;
        text-align: left;
        width: fit-content;
    }

    .infobox__title::after {
        content: '▼';
        font-size: 0.5rem;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.3s;
    }

    .infobox__title.active::after {
        transform: translateY(-50%) rotate(180deg);
    }
  
    .infobox__title.active + .infobox__content {
        display: block;
        font-size: 0.75rem;
    }
    
    .tva-footer__row.row--2 {
    	align-items: flex-start;
        justify-content: flex-start;
    }
    
    .tva-footer__row.row--2 .col--1, .tva-footer__row.row--2 .col--2 {
        align-items: start;
        justify-content: start;
    }
    
    .tva-footer__row.row--2 .col--1 {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .tva-footer__row.row--2 .col--2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }
}