﻿.info-card {
    max-width: 600px;
    padding: 20px;
    position: relative;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
}

.info-card__image img {
    max-width: 100px;
    max-height: 100px;
    display: block;
    margin-bottom: 15px;
}

.info-card__title {
    font-size: 24px;
    color: rgb(0, 14, 38);
    margin-bottom: 10px;
    font-family: 'VWHeadWeb-Bold';
}

.info-card__description {
    color: #000e26;
}

.info-card.expanded .info-card__description {
    max-height: 500px;
    filter: none;
    color: #001133;
}

.info-card__bottom {
    position: relative;
    height: 44px;
}

.button-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(223, 228, 232);
    z-index: 0;
}

.info-card__toggle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgb(0, 30, 80);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mx-w100 {
    max-width: 100% !important;
}

.info-card__toggle:hover {
    background: rgb(0, 40, 100);
    transform: translate(-50%, -50%) scale(1.1);
}

.info-card__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.color-wh {
    color: white;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.5rem;
}

.border-bottom {
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #001e50;
}

    .border-bottom:hover {
        border-bottom-color: #001e50;
        color: #001e50;
    }
