/* ═══════════════════════════════════════════════════════════════
   VFA Homepage
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */

.vfa-hero {
    background: var(--vfa-orange);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.vfa-hero__inner {
    position: relative;
    z-index: 1;
}

.vfa-hero__title {
    margin: 0;
    line-height: 0;
}

.vfa-hero__img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    animation: hero-in .8s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ─── Intro ─── */

.vfa-intro {
    padding-block: 60px;
}

.vfa-intro .vfa-prose {
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.vfa-intro .vfa-prose strong {
    font-weight: 700;
}


/* ─── News Section ─── */

.vfa-news-section {
    position: relative;
    background: var(--vfa-dark);
    background-size: cover;
    background-position: center;
}

.vfa-news-section__overlay {
    position: relative;
    background: rgba(0, 0, 0, .65);
    padding: 80px 0;
    overflow: hidden;
}

.vfa-news-section__overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/eu-map.svg') no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.vfa-news-section .vfa-wrap {
    position: relative;
    z-index: 1;
}

.vfa-news-section .vfa-section-heading {
    color: var(--vfa-orange-light);
    font-style: italic;
    font-weight: 600;
}

.vfa-news-section__title {
    color: var(--vfa-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.vfa-news-card {
    display: block;
    color: var(--vfa-white);
    text-decoration: none;
    transition: transform .25s;
}

.vfa-news-card:hover {
    transform: translateY(-4px);
    color: var(--vfa-white);
}

.vfa-news-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--vfa-radius);
    margin-bottom: 16px;
}

.vfa-news-card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--vfa-white);
}

/* News carousel overrides */
.vfa-news-carousel .vfa-carousel__arrow {
    background: rgba(255, 255, 255, .2);
}

.vfa-news-carousel .vfa-carousel__arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, .4);
}

.vfa-news-carousel .vfa-carousel__dot {
    background: rgba(255, 255, 255, .3);
}

.vfa-news-carousel .vfa-carousel__dot.is-active {
    background: var(--vfa-white);
}

.vfa-news-carousel .vfa-carousel__dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, .5);
}


/* ─── Votes Section ─── */

.vfa-votes-section {
    background: var(--vfa-cream-light);
}

.vfa-vote-card {
    background: var(--vfa-white);
    border-radius: var(--vfa-radius);
    padding: 24px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: transform .25s, box-shadow .25s;
}

.vfa-vote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.vfa-vote-card__date {
    font-size: .8rem;
    color: var(--vfa-text-secondary);
}

.vfa-vote-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 16px 0;
    background: var(--vfa-dark);
}

.vfa-vote-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.vfa-vote-card__result {
    font-size: .9rem;
    color: var(--vfa-text-secondary);
    margin-bottom: 16px;
}

.vfa-vote-card__result strong {
    color: var(--vfa-orange-deep);
}

.vfa-vote-card__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vfa-vote-card__detail {
    font-size: .85rem;
    font-weight: 500;
    color: var(--vfa-text-secondary);
}


/* ─── Votes Carousel ─── */

.vfa-carousel {
    position: relative;
    margin-top: 40px;
    padding: 0 48px;
}

.vfa-carousel__viewport {
    overflow: hidden;
}

.vfa-carousel__track {
    display: flex;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.vfa-carousel__slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

/* Cards fill slide height */
.vfa-carousel__slide .vfa-vote-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vfa-carousel__slide .vfa-vote-card__actions {
    margin-top: auto;
}

/* Button reset inside vote cards */
.vfa-vote-card__actions button.vfa-btn {
    font-family: var(--vfa-font-button);
    line-height: 1.4;
}

/* Arrows */
.vfa-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vfa-orange);
    color: var(--vfa-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, transform .15s;
    z-index: 2;
}

.vfa-carousel__arrow:hover:not(:disabled) {
    background: var(--vfa-orange-deep);
    transform: translateY(-50%) scale(1.08);
}

.vfa-carousel__arrow:disabled {
    opacity: .35;
    cursor: default;
}

.vfa-carousel__arrow svg {
    width: 20px;
    height: 20px;
}

.vfa-carousel__arrow--prev { left: 0; }
.vfa-carousel__arrow--next { right: 0; }

/* Dots */
.vfa-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.vfa-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--vfa-gray-light);
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .15s;
}

.vfa-carousel__dot.is-active {
    background: var(--vfa-orange);
    transform: scale(1.2);
}

.vfa-carousel__dot:hover:not(.is-active) {
    background: var(--vfa-orange-light);
}

@media (max-width: 1024px) {
    .vfa-carousel { padding: 0 40px; }
}

@media (max-width: 640px) {
    .vfa-carousel { padding: 0; }
    .vfa-carousel__arrow { display: none; }
    .vfa-carousel__slide { padding: 0 8px; }
}


/* ─── MEPs Modal ─── */

.vfa-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.vfa-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.vfa-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.vfa-modal__content {
    position: relative;
    background: var(--vfa-white);
    border-radius: var(--vfa-radius);
    width: 90%;
    max-width: 960px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .25);
    transform: translateY(24px);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.vfa-modal.is-open .vfa-modal__content {
    transform: translateY(0);
}

.vfa-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--vfa-gray-light);
    background: var(--vfa-cream-light);
    border-radius: var(--vfa-radius) var(--vfa-radius) 0 0;
}

.vfa-modal__title {
    margin: 0;
    font-family: var(--vfa-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vfa-dark);
    line-height: 1.3;
    padding-right: 16px;
}

.vfa-modal__close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
    color: var(--vfa-text-secondary);
}

.vfa-modal__close:hover {
    background: rgba(0, 0, 0, .06);
    color: var(--vfa-dark);
}

.vfa-modal__close svg {
    width: 20px;
    height: 20px;
}

.vfa-modal__body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* Loading state */
.vfa-modal__loading {
    text-align: center;
    padding: 48px 24px;
    color: var(--vfa-text-secondary);
}

.vfa-modal__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--vfa-gray-light);
    border-top-color: var(--vfa-orange);
    border-radius: 50%;
    animation: vfa-spin .8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes vfa-spin {
    to { transform: rotate(360deg); }
}

/* Table styles inside modal (override plugin output) */
.vfa-modal__table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    font-family: var(--vfa-font-body);
}

.vfa-modal__table-wrap thead th {
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .04em;
    padding: 12px 10px;
    background: var(--vfa-orange);
    color: var(--vfa-white);
    border: none;
    white-space: nowrap;
    user-select: none;
}

.vfa-modal__table-wrap thead th:hover {
    background: var(--vfa-orange-deep);
}

/* Sort indicators */
.vfa-modal__table-wrap thead th[aria-sort="ascending"]::after {
    content: ' \25B2';
    font-size: .65rem;
}

.vfa-modal__table-wrap thead th[aria-sort="descending"]::after {
    content: ' \25BC';
    font-size: .65rem;
}

.vfa-modal__table-wrap tbody td {
    padding: 10px;
    border: none;
    border-bottom: 1px solid var(--vfa-gray-light);
    vertical-align: middle;
}

.vfa-modal__table-wrap tbody tr:hover {
    background: var(--vfa-cream-light);
}

.vfa-modal__table-wrap td.mep-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.vfa-modal__table-wrap td.mep-name img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.vfa-modal__table-wrap td.mep-name a {
    color: var(--vfa-dark);
    text-decoration: none;
}

.vfa-modal__table-wrap td.mep-name a:hover {
    text-decoration: underline;
    color: var(--vfa-orange-deep);
}

.vfa-modal__table-wrap td:last-child {
    text-align: center;
}

/* Vote dot colors (match plugin output classes) */
.vfa-modal__table-wrap .vote-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.vfa-modal__table-wrap .vote-favorevole { background: var(--vfa-green); }
.vfa-modal__table-wrap .vote-contrario  { background: var(--vfa-red); }
.vfa-modal__table-wrap .vote-astenuto   { background: var(--vfa-yellow); }
.vfa-modal__table-wrap .vote-assente    { background: var(--vfa-gray); }

/* Modal responsive */
@media (max-width: 768px) {
    .vfa-modal__content {
        width: 95%;
        max-height: 90vh;
    }

    .vfa-modal__title {
        font-size: 1rem;
    }

    .vfa-modal__body {
        padding: 16px;
    }

    .vfa-modal__table-wrap table {
        font-size: 13px;
    }

    .vfa-modal__table-wrap td.mep-name img {
        width: 32px;
        height: 32px;
    }
}


/* ─── 10 Punti Section ─── */

.vfa-punti-section {
    background: var(--vfa-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle warm grain overlay */
.vfa-punti-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(241, 143, 89, .08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 90, 0, .05) 0%, transparent 50%);
    pointer-events: none;
}

/* Repeating EU stars pattern */
.vfa-punti-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/eu-stars.svg') repeat;
    background-size: 480px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.vfa-punti-section .vfa-wrap {
    position: relative;
    z-index: 1;
}

/* Heading overrides for dark bg */
.vfa-punti-section__kicker {
    color: var(--vfa-orange) !important;
}

.vfa-punti-section__title {
    color: var(--vfa-white);
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}

.vfa-punti-section__intro {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 48px;
    text-align: left;
}

.vfa-punti-section__intro p {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    line-height: 1.7;
}

/* CTA button on dark bg */
.vfa-punti-section__cta {
    margin-top: 48px;
    border-color: rgba(255, 255, 255, .3) !important;
    color: var(--vfa-white) !important;
}

.vfa-punti-section__cta:hover {
    border-color: var(--vfa-orange) !important;
    background: var(--vfa-orange) !important;
    color: var(--vfa-white) !important;
}

/* Points grid */
.vfa-punti-list {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin-inline: auto;
    position: relative;
}

/* Single point card */
.vfa-punto {
    display: flex;
    flex-direction: column;
    background: var(--vfa-white);
    border-radius: 16px;
    padding: 32px;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
    position: relative;
}

.vfa-punto:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .25), 0 0 0 1px rgba(241, 143, 89, .1);
}

/* Card header: number + icon */
.vfa-punto__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vfa-punto__number {
    font-family: var(--vfa-font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--vfa-orange);
    letter-spacing: -.04em;
    transition: color .3s;
}

.vfa-punto:hover .vfa-punto__number {
    color: var(--vfa-orange-deep);
}

.vfa-punto__img {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(241, 143, 89, .15), rgba(255, 90, 0, .1));
    padding: 10px;
}

/* Card body */
.vfa-punto__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vfa-punto__title {
    font-family: var(--vfa-font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--vfa-dark);
    margin: 0 0 12px;
}

.vfa-punto__intro {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--vfa-text-secondary);
    margin: 0 0 .5em;
    flex: 1;
}

/* "Continua a leggere" toggle */
.vfa-punto__readmore {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    margin: 8px 0 0;
    cursor: pointer;
    font-family: var(--vfa-font-body);
    font-size: .85rem;
    font-weight: 600;
    color: var(--vfa-orange-deep);
    text-decoration: none;
    transition: color .2s, gap .2s;
}

.vfa-punto__readmore::after {
    content: '\2192';
    transition: transform .2s;
}

.vfa-punto__readmore:hover {
    color: var(--vfa-dark);
}

.vfa-punto__readmore:hover::after {
    transform: translateX(3px);
}

/* Expanded "read more" content */
.vfa-punto__extra {
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
    max-height: 0;
    opacity: 0;
}

.vfa-punto__extra[hidden] {
    display: block !important;
    max-height: 0;
    opacity: 0;
}

.vfa-punto__extra.is-open {
    max-height: 2000px;
    opacity: 1;
}

.vfa-punto__extra p {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--vfa-text-secondary);
    margin: .6em 0;
}

.vfa-punto__extra p:first-child {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--vfa-gray-light);
}

/* Staggered reveal for grid items */
.vfa-punti-list .vfa-punto:nth-child(1)  { transition-delay: 0s; }
.vfa-punti-list .vfa-punto:nth-child(2)  { transition-delay: .05s; }
.vfa-punti-list .vfa-punto:nth-child(3)  { transition-delay: .1s; }
.vfa-punti-list .vfa-punto:nth-child(4)  { transition-delay: .15s; }
.vfa-punti-list .vfa-punto:nth-child(5)  { transition-delay: .2s; }
.vfa-punti-list .vfa-punto:nth-child(6)  { transition-delay: .25s; }
.vfa-punti-list .vfa-punto:nth-child(7)  { transition-delay: .3s; }
.vfa-punti-list .vfa-punto:nth-child(8)  { transition-delay: .35s; }
.vfa-punti-list .vfa-punto:nth-child(9)  { transition-delay: .4s; }
.vfa-punti-list .vfa-punto:nth-child(10) { transition-delay: .45s; }

/* Responsive */
@media (max-width: 768px) {
    .vfa-punti-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vfa-punto {
        padding: 24px;
    }

    .vfa-punto__number {
        font-size: 2.25rem;
    }

    .vfa-punto__img {
        width: 56px;
        height: 56px;
        padding: 8px;
    }

    .vfa-punti-section__intro {
        margin-bottom: 32px;
    }

    .vfa-punti-section__cta {
        margin-top: 32px;
    }
}


/* ─── Citizens Section ─── */

.vfa-citizens-section {
    background: var(--vfa-orange-light);
    color: var(--vfa-dark);
}

.vfa-citizens-section .vfa-section-heading {
    color: var(--vfa-orange-deep);
    text-align: center;
}

.vfa-citizens-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Stat cards grid */
.vfa-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2.5rem;
}

.vfa-stat-card {
    background: var(--vfa-white);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
                box-shadow .3s cubic-bezier(.22, 1, .36, 1);
}

.vfa-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.vfa-stat-card__number {
    display: block;
    font-family: var(--vfa-font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--vfa-orange-deep);
    margin-bottom: 12px;
}

.vfa-stat-card__label {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--vfa-dark);
    margin: 0;
}

/* Source attribution */
.vfa-citizens-source {
    text-align: center;
    font-size: .85rem;
    color: rgba(13, 13, 15, .55);
    margin-bottom: 2rem;
}

/* Staggered reveal for cards */
.vfa-stats-grid .vfa-stat-card:nth-child(2) { transition-delay: .08s; }
.vfa-stats-grid .vfa-stat-card:nth-child(3) { transition-delay: .16s; }
.vfa-stats-grid .vfa-stat-card:nth-child(4) { transition-delay: .24s; }
.vfa-stats-grid .vfa-stat-card:nth-child(5) { transition-delay: .32s; }
.vfa-stats-grid .vfa-stat-card:nth-child(6) { transition-delay: .4s; }

@media (max-width: 900px) {
    .vfa-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .vfa-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vfa-stat-card {
        padding: 24px 20px;
    }

    .vfa-stat-card__number {
        font-size: 2.75rem;
    }
}

/* ─── Lightbox ─── */

.vfa-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.vfa-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.vfa-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
}

.vfa-lightbox__inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: vfa-lightbox-in .3s ease;
}

@keyframes vfa-lightbox-in {
    from { transform: scale(.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.vfa-lightbox__img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.vfa-lightbox__caption {
    text-align: center;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    margin-top: 12px;
}

.vfa-lightbox__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--vfa-white);
    color: var(--vfa-dark);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    transition: background .2s;
}

.vfa-lightbox__close:hover {
    background: var(--vfa-cream);
}


/* ─── Coalition Section ─── */

.vfa-coalition-section {
    background: var(--vfa-cream-light);
}

.vfa-coalition-section__heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.vfa-coalition-section__sub {
    font-size: 1.25rem;
    color: var(--vfa-text-secondary);
    margin-bottom: 16px;
}

.vfa-coalition-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 40px 32px;
    margin-top: 48px;
    max-width: 960px;
    margin-inline: auto;
}

.vfa-coalition-logos img {
    max-height: 100px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .vfa-coalition-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
    .vfa-coalition-logos img { max-height: 70px; max-width: 140px; }
}
