/* ============================================
   People Showcase - Frontend
   ============================================ */

.ps-showcase {
    margin: 0 auto;
    font-family: inherit;
    color: var(--ps-color-text, inherit);
}

.ps-showcase-title {
    text-align: center;
    margin-bottom: 30px;
}

/* --- Filtry (styl powerspeech) --- */

.ps-filters {
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.ps-filters-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--ps-card-bg, #fff);
}

.ps-search-wrap {
    flex: 1;
    min-width: 200px;
}

.ps-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.ps-search-input:focus {
    border-color: var(--ps-btn-filter-bg, #2c2c2c);
}

.ps-filters-collapse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.ps-filters-collapse:hover {
    opacity: 1;
}

.ps-filter-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.ps-filters-open .ps-filters-collapse .ps-filter-arrow {
    transform: rotate(180deg);
}

/* Panel filtrow - zwijany */
.ps-filters-body {
    display: none;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ps-filters-open .ps-filters-body {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    max-height: 400px;
    overflow-y: auto;
}

.ps-filter-group {
    flex: 1 1 200px;
    min-width: 180px;
}

.ps-filter-group-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* Pill checkboxy */
.ps-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ps-filter-pill {
    display: inline-block;
    cursor: pointer;
}

.ps-filter-pill input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.ps-pill-text {
    display: inline-block;
    padding: 3px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: inherit;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    user-select: none;
}

.ps-filter-pill:hover .ps-pill-text {
    border-color: var(--ps-filter-active-bg, #2c2c2c);
}

.ps-pill-active .ps-pill-text,
.ps-filter-pill input:checked + .ps-pill-text {
    background: var(--ps-filter-active-bg, #2c2c2c);
    border-color: var(--ps-filter-active-bg, #2c2c2c);
    color: #fff;
}

.ps-filter-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-basis: 100%;
    width: 100%;
}

/* --- Przyciski --- */

.ps-btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.1s;
}

.ps-btn:active {
    transform: scale(0.97);
}

.ps-btn-filter {
    background: var(--ps-btn-filter-bg, #2c2c2c);
    color: #fff;
}

.ps-btn-filter:hover {
    opacity: 0.85;
}

.ps-btn-clear {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: inherit;
}

.ps-btn-clear:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* --- Wyniki --- */

.ps-results-count {
    margin-bottom: 16px;
    font-size: 14px;
    opacity: 0.6;
}

/* --- Grid osob --- */

.ps-people-grid {
    display: grid;
    grid-template-columns: repeat(var(--ps-cols-desktop, 1), 1fr);
    gap: 30px;
    transition: opacity 0.3s;
}

.ps-people-grid.ps-loading {
    opacity: 0.4;
    pointer-events: none;
}

/* --- Karta osoby (container query) --- */

.ps-person-card {
    display: flex;
    flex-direction: column;
    background: var(--ps-card-bg, #fff);
    border-radius: 12px;
    padding: 24px;
    border-width: 1px;
    border-style: var(--ps-card-border-style, none);
    border-color: var(--ps-card-border-color, transparent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.ps-person-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* --- Wewnetrzny layout karty --- */

.ps-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ps-card-content {
    flex: 1;
}

/* --- Header: zdjecie + nazwa --- */

.ps-person-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.ps-person-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ps-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ps-person-name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ps-color-name, inherit);
}

/* --- Tagi i jezyki --- */

.ps-person-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.ps-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    background: #f5f5f5;
}

/* --- Bio --- */

.ps-person-bio {
    margin-bottom: 16px;
}

.ps-person-bio p {
    margin-bottom: 0;
}


/* --- Opis rozszerzony --- */

.ps-person-description {
    margin-bottom: 16px;
}

/* --- Social media --- */

.ps-person-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: flex-start;
}

.ps-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ps-social-bg, #2c2c2c);
    border-radius: 50%;
    font-size: 0;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.ps-social-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
    text-decoration: none;
}

/* SVG ikony w linkach social */
.ps-social-link::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.ps-icon-facebook::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4.4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4.4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z'/%3E%3C/svg%3E");
}

.ps-icon-linkedin::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.83-48.3 93.96 0 111.28 61.9 111.28 142.3V448z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.83-48.3 93.96 0 111.28 61.9 111.28 142.3V448z'/%3E%3C/svg%3E");
}

.ps-icon-instagram::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.ps-icon-twitter::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");
}

.ps-icon-youtube::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C/svg%3E");
}

.ps-icon-tiktok::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25V349.38A162.55 162.55 0 1 1 185 188.31V278.2a74.62 74.62 0 1 0 52.23 71.18V0l88 0a121.18 121.18 0 0 0 1.86 22.17h0A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25V349.38A162.55 162.55 0 1 1 185 188.31V278.2a74.62 74.62 0 1 0 52.23 71.18V0l88 0a121.18 121.18 0 0 0 1.86 22.17h0A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E");
}

.ps-icon-website::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64h185.4c2.2 20.4 3.3 41.8 3.3 64zm28.8-64h123.1c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6C399.5 39.1 467.1 112.8 493.4 160zM256 16c35.3 49.8 59.4 107.6 68.7 160H187.3C196.6 123.6 220.7 65.8 256 16zm-135.4-7.6C95 42.6 75.2 96.1 65.3 160H-21.4C4.9 112.8 72.5 39.1 120.6 8.4zM-29.4 192H93.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H-29.4c-5.3-20.5-8.1-41.9-8.1-64s2.8-43.5 8.1-64zM65.3 352c10 63.9 29.8 117.4 55.3 151.6C42.5 472.9-25.1 399.2-51.4 352H65.3zm121.4 151.6c-25.5-34.2-45.3-87.7-55.3-151.6h249.4c-10 63.9-29.8 117.4-55.3 151.6C299.5 534.9 231.9 534.9 186.7 503.6zM376.7 352c-10 63.9-29.8 117.4-55.3 151.6C399.5 472.9 467.1 399.2 493.4 352H376.7z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64h185.4c2.2 20.4 3.3 41.8 3.3 64zm28.8-64h123.1c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6C399.5 39.1 467.1 112.8 493.4 160zM256 16c35.3 49.8 59.4 107.6 68.7 160H187.3C196.6 123.6 220.7 65.8 256 16zm-135.4-7.6C95 42.6 75.2 96.1 65.3 160H-21.4C4.9 112.8 72.5 39.1 120.6 8.4zM-29.4 192H93.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H-29.4c-5.3-20.5-8.1-41.9-8.1-64s2.8-43.5 8.1-64zM65.3 352c10 63.9 29.8 117.4 55.3 151.6C42.5 472.9-25.1 399.2-51.4 352H65.3zm121.4 151.6c-25.5-34.2-45.3-87.7-55.3-151.6h249.4c-10 63.9-29.8 117.4-55.3 151.6C299.5 534.9 231.9 534.9 186.7 503.6zM376.7 352c-10 63.9-29.8 117.4-55.3 151.6C399.5 472.9 467.1 399.2 493.4 352H376.7z'/%3E%3C/svg%3E");
}

/* --- Przyciski akcji (rezerwacja + kontakt) --- */

.ps-person-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.ps-person-actions a:hover
{
    box-shadow: 0px 15px 25px -7px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.ps-btn-contact {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    background: var(--ps-btn-contact-bg, #f5f5f5);
    color: var(--ps-btn-contact-color, #000);
    transition: opacity 0.2s;
}

/* Bitrix24 booking button override */
.ps-booking-btn .b24-form-click-btn {
    width: 100%;
    font-size: 15px;
    padding: 15px;
    height: auto;
    border-radius: 30px;
}

/* --- Brak wynikow --- */

.ps-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    opacity: 0.5;
    font-size: 16px;
}

/* --- Card container queries --- */

/* Szeroki card — dwukolumnowy uklad tylko przy 1 kolumnie grida na duzym ekranie */
@media (min-width: 1000px) {
    .ps-grid-single .ps-card-body {
        flex-direction: row;
        align-items: stretch;
    }

    .ps-grid-single .ps-card-content {
        flex: 1;
        min-width: 0;
    }

    .ps-grid-single .ps-person-actions {
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        margin-top: 0;
        padding-top: 0;
        padding-left: 24px;
        min-width: 300px;
        max-width: 100%;
        margin-left: 24px;
    }

    .ps-grid-single .ps-person-header {
        gap: 20px;
    }

    .ps-grid-single .ps-person-photo {
        width: 100px;
        height: 100px;
    }

    .ps-grid-single .ps-person-name {
        font-size: 2.2em;
    }

    .ps-grid-single .ps-social-link {
        width: 40px;
        height: 40px;
    }

    .ps-grid-single .ps-social-link::before {
        width: 20px;
        height: 20px;
    }
}

/* --- Responsive grid (media queries dla viewportu) --- */

@media (max-width: 992px) {
    .ps-people-grid {
        grid-template-columns: repeat(var(--ps-cols-tablet, 1), 1fr);
    }
}

@media (max-width: 600px) {
    .ps-people-grid {
        grid-template-columns: repeat(var(--ps-cols-mobile, 1), 1fr);
    }

    .ps-filters-header {
        flex-direction: column;
        gap: 8px;
    }

    .ps-search-wrap {
        width: 100%;
    }

    .ps-filters-open .ps-filters-body {
        flex-direction: column;
        max-height: 250px;
        gap: 12px;
    }

    .ps-filter-group {
        flex-basis: 100%;
        min-width: 0;
    }

    .ps-filter-actions {
        flex-direction: column;
    }

    .ps-filter-actions .ps-btn {
        width: 100%;
        text-align: center;
    }
}
