/*
Theme Name: STARPRINT
Theme URI: https://starprint.advgeo.ru
Description: Тема типографии STARPRINT
Author: STARPRINT
Version: 1.0
*/

/* Сброс браузерных стилей кнопок — Tailwind Preflight дополнение */
button {
    cursor: pointer;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

/* Гарантированные стили для кнопок (fallback если Tailwind CDN не загрузился) */
.bg-red-600 { background-color: #dc2626 !important; }
.bg-red-700 { background-color: #b91c1c !important; }
.hover\:bg-red-700:hover { background-color: #b91c1c !important; }
.text-white { color: #ffffff !important; }
.rounded-full { border-radius: 9999px !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.font-bold { font-weight: 700 !important; }
.font-medium { font-weight: 500 !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.inline-flex { display: inline-flex !important; }
.items-center { align-items: center !important; }
.gap-2 { gap: 0.5rem !important; }

/* === Главная: первый экран / оферный блок === */
.sp-home-hero {
    min-height: 515px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 78% 20%, rgba(239, 0, 17, 0.14), transparent 30%),
        linear-gradient(135deg, #0b1220 0%, #111b2b 100%);
}

.sp-home-hero__inner {
    width: min(1220px, calc(100% - 96px));
    margin: 0 auto;
    padding: 56px 0 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 540px;
    align-items: center;
    gap: clamp(42px, 7vw, 92px);
}

.sp-home-hero__eyebrow {
    margin: 0 0 16px;
    color: #ff646d;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sp-home-hero__title {
    max-width: 540px;
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.14;
    font-weight: 850;
    letter-spacing: 0;
}

.sp-home-hero__lead {
    max-width: 590px;
    margin: 24px 0 0;
    color: rgba(248, 250, 252, 0.76);
    font-size: 17px;
    line-height: 1.62;
}

.sp-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.sp-home-hero__button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sp-home-hero__button:hover {
    transform: translateY(-1px);
}

.sp-home-hero__button--primary {
    background: #ef0011;
    color: #fff;
}

.sp-home-hero__button--primary:hover {
    background: #c9000e;
}

.sp-home-hero__button--secondary {
    background: rgba(52, 63, 80, 0.92);
    color: #fff;
}

.sp-home-hero__button--secondary:hover {
    background: rgba(69, 82, 103, 0.96);
}

.sp-home-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.sp-home-hero__stat {
    min-height: 112px;
    padding: 22px 20px;
    border-radius: 10px;
    background: rgba(52, 63, 80, 0.9);
}

.sp-home-hero__stat strong {
    display: block;
    color: #ff646d;
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1;
    font-weight: 850;
}

.sp-home-hero__stat span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.3;
}

@media (min-width: 1101px) and (max-width: 1280px) {
    .sp-home-hero__inner {
        width: min(100% - 72px, 1120px);
        grid-template-columns: minmax(0, 1fr) 432px;
        gap: 32px;
    }

    .sp-home-hero__title {
        max-width: 480px;
        font-size: clamp(32px, 3.1vw, 38px);
    }

    .sp-home-hero__lead {
        max-width: 540px;
    }

    .sp-home-hero__stat {
        min-height: 98px;
        padding: 20px 18px;
    }

    .sp-home-hero__stat strong {
        font-size: 36px;
    }
}

@media (max-width: 1100px) {
    .sp-home-hero__inner {
        width: min(100% - 40px, 1120px);
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sp-home-hero__stats {
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .sp-home-hero {
        min-height: auto;
    }

    .sp-home-hero__inner {
        width: calc(100% - 32px);
        padding: 52px 0 48px;
    }

    .sp-home-hero__title {
        font-size: 28px;
    }

    .sp-home-hero__lead {
        font-size: 16px;
    }

    .sp-home-hero__actions {
        grid-template-columns: 1fr;
    }

    .sp-home-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .sp-home-hero__stat {
        min-height: 92px;
        padding: 18px 14px;
    }

    .sp-home-hero__stat strong {
        font-size: 30px;
    }

    .sp-home-hero__stat span {
        margin-top: 8px;
        font-size: 12px;
    }

    .sp-home-hero__button {
        width: 100%;
    }
}

/* === Главная: услуги === */
.sp-home-services {
    padding: 76px 0 84px;
    background: #fff;
    color: #111827;
}

.sp-home-services__inner {
    width: min(1220px, calc(100% - 96px));
    margin: 0 auto;
}

.sp-home-services__head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.sp-home-services__head h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: 0;
}

.sp-home-services__head p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.55;
}

.sp-home-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.sp-home-service-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 220px;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    isolation: isolate;
}

.sp-home-service-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.sp-home-service-card--wide {
    grid-column: span 2;
}

.sp-home-service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease;
    z-index: -2;
}

.sp-home-service-card:hover img {
    transform: scale(1.055);
}

.sp-home-service-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.2) 42%, rgba(15, 23, 42, 0.82) 100%);
    z-index: -1;
}

.sp-home-service-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px;
}

.sp-home-service-card__content strong {
    display: block;
    max-width: 90%;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 850;
}

.sp-home-service-card:not(.sp-home-service-card--large) .sp-home-service-card__content strong {
    font-size: 18px;
}

.sp-home-service-card__content small {
    display: block;
    max-width: 92%;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.4;
}

.sp-home-service-card__content em {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 750;
    transition: background-color 0.2s ease;
}

.sp-home-service-card:hover .sp-home-service-card__content em {
    background: #ef0011;
}

@media (max-width: 1024px) {
    .sp-home-services__inner {
        width: min(100% - 40px, 1120px);
    }

    .sp-home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .sp-home-service-card,
    .sp-home-service-card--large,
    .sp-home-service-card--wide {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 640px) {
    .sp-home-services {
        padding: 58px 0 64px;
    }

    .sp-home-services__inner {
        width: calc(100% - 32px);
    }

    .sp-home-services__head {
        margin-bottom: 28px;
        text-align: left;
    }

    .sp-home-services__head h2 {
        font-size: 30px;
    }

    .sp-home-services__head p {
        font-size: 16px;
    }

    .sp-home-services__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sp-home-service-card,
    .sp-home-service-card--large,
    .sp-home-service-card--wide {
        aspect-ratio: 16 / 10.8;
    }

    .sp-home-service-card__content {
        padding: 20px;
    }
}

/* === Главная: общие секции ниже услуг === */
.sp-home-section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.sp-home-section-head--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    text-align: left;
}

.sp-home-section-head h2,
.sp-home-production h2,
.sp-home-cta h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: 0;
}

.sp-home-section-head p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.55;
}

.sp-home-eyebrow {
    margin: 0 0 14px;
    color: #ff646d;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sp-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.sp-home-link:hover {
    color: #b91c1c;
}

.sp-home-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #ef0011;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.sp-home-button:hover {
    background: #c9000e;
    color: #fff;
}

/* === Главная: портфолио === */
.sp-home-portfolio {
    padding: 76px 0 84px;
    background: #f8fafc;
    color: #111827;
}

.sp-home-portfolio__inner {
    width: min(1220px, calc(100% - 96px));
    margin: 0 auto;
}

.sp-home-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sp-home-portfolio__item {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    background: #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.sp-home-portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.sp-home-portfolio__item:hover img {
    transform: scale(1.055);
}

/* === Главная: производство === */
.sp-home-production {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    color: #fff;
    background: #0b1220;
}

.sp-home-production__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sp-home-production__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px);
    transform: scale(1.06);
    opacity: 0.22;
}

.sp-home-production__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.84);
}

.sp-home-production__inner {
    position: relative;
    z-index: 1;
    width: min(1220px, calc(100% - 96px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    align-items: center;
    gap: 64px;
}

.sp-home-production h2 {
    color: #fff;
}

.sp-home-production__content > p:not(.sp-home-eyebrow) {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(248, 250, 252, 0.76);
    font-size: 17px;
    line-height: 1.65;
}

.sp-home-checklist {
    display: grid;
    gap: 14px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.sp-home-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(248, 250, 252, 0.82);
    font-size: 16px;
    line-height: 1.45;
}

.sp-home-checklist i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ef0011;
    color: #fff;
    font-size: 11px;
}

.sp-home-production__media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    transform: rotateY(-6deg) rotateX(3deg);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.sp-home-production__media:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.52);
}

.sp-home-production__media > img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
}

.sp-home-production__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.sp-home-production__badge strong,
.sp-home-production__badge span {
    display: block;
}

.sp-home-production__badge strong {
    font-size: 30px;
    line-height: 1;
    font-weight: 850;
}

.sp-home-production__badge span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

/* === Главная: преимущества === */
.sp-home-advantages {
    padding: 76px 0 84px;
    background: #fff;
    color: #111827;
}

.sp-home-advantages__inner {
    width: min(1220px, calc(100% - 96px));
    margin: 0 auto;
}

.sp-home-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.sp-home-advantage {
    padding: 26px 22px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.sp-home-advantage span {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sp-advantage-color-a, #ef0011), var(--sp-advantage-color-b, #ef0011));
    color: #fff;
    font-size: 22px;
}

.sp-home-advantage:hover span {
    transform: translateY(-2px);
}

.sp-home-advantage h3 {
    margin: 0 0 9px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 850;
}

.sp-home-advantage p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

/* === Главная: партнёры === */
.sp-home-partners {
    padding: 64px 0 72px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #111827;
}

.sp-home-partners__inner {
    width: min(1220px, calc(100% - 96px));
    margin: 0 auto;
}

.sp-home-partners h2 {
    margin: 0 0 34px;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 850;
    text-align: center;
}

.sp-home-partners__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sp-home-partner {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 34px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}

.sp-home-partner img {
    max-width: 180px;
    max-height: 64px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* === Главная: CTA === */
.sp-home-cta {
    padding: 74px 0 80px;
    background: #ef0011;
    color: #fff;
    text-align: center;
}

.sp-home-cta__inner {
    width: min(900px, calc(100% - 96px));
    margin: 0 auto;
}

.sp-home-cta h2 {
    color: #fff;
}

.sp-home-cta p {
    margin: 16px auto 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.55;
}

.sp-home-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.sp-home-cta__button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
}

.sp-home-cta__button--primary {
    background: #fff;
    color: #dc2626;
}

.sp-home-cta__button--secondary {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
}

@media (max-width: 1024px) {
    .sp-home-portfolio__inner,
    .sp-home-production__inner,
    .sp-home-advantages__inner,
    .sp-home-partners__inner {
        width: min(100% - 40px, 1120px);
    }

    .sp-home-portfolio__grid,
    .sp-home-advantages__grid,
    .sp-home-partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sp-home-production__inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .sp-home-production__media {
        max-width: 620px;
    }
}

@media (max-width: 640px) {
    .sp-home-section-head,
    .sp-home-section-head--split {
        display: block;
        margin-bottom: 28px;
        text-align: left;
    }

    .sp-home-section-head h2,
    .sp-home-production h2,
    .sp-home-cta h2 {
        font-size: 30px;
    }

    .sp-home-section-head p,
    .sp-home-cta p {
        font-size: 16px;
    }

    .sp-home-link {
        margin-top: 16px;
    }

    .sp-home-portfolio,
    .sp-home-production,
    .sp-home-advantages,
    .sp-home-partners,
    .sp-home-cta {
        padding: 58px 0 64px;
    }

    .sp-home-portfolio__inner,
    .sp-home-production__inner,
    .sp-home-advantages__inner,
    .sp-home-partners__inner,
    .sp-home-cta__inner {
        width: calc(100% - 32px);
    }

    .sp-home-portfolio__grid,
    .sp-home-advantages__grid,
    .sp-home-partners__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sp-home-portfolio__item {
        aspect-ratio: 16 / 11;
    }

    .sp-home-production__media > img {
        height: 260px;
    }

    .sp-home-production__badge {
        left: 16px;
        bottom: 16px;
    }

    .sp-home-advantage {
        text-align: left;
    }

    .sp-home-advantage span {
        margin-bottom: 14px;
    }

    .sp-home-cta__button {
        width: 100%;
    }
}

/* Hero кнопки на страницах услуг */
button.bg-red-600,
a.bg-red-600 {
    background-color: #dc2626;
    color: #ffffff;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
button.bg-red-600:hover,
a.bg-red-600:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

/* === Стили из оригинала starprint.pro (общие для страниц услуг) === */

/* Анимация фоновых пятен в Hero */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob { animation: blob 7s infinite; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

/* Контейнер изображений с object-fit */
.image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

/* Производственный наклон */
.production-tilt {
    transform: rotateY(-6deg) rotateX(3deg);
    transition: transform 0.4s ease;
}
.production-tilt:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* === FAQ аккордеон === */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}
.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #111827;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}
.faq-question:focus {
    outline: 2px solid #ef4444;
    outline-offset: -2px;
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9fafb;
    color: #374151;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    padding: 20px 24px;
    max-height: 500px;
}
.faq-icon {
    transition: transform 0.3s ease;
    color: #ef4444;
    flex-shrink: 0;
    margin-left: 12px;
    pointer-events: none;
}
.faq-question * {
    pointer-events: none;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* CTA кнопки — убраны конфликтующие правила */



/* Страница контактов — карточки менеджеров */
.manager-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}
.manager-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.manager-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 16px;
}
