html {
  font-size: 13pt;
}

/* ── For You page ── */

.for-you-page {
    padding: 1rem 0 2rem;
}

.for-you-section {
    margin-bottom: 1rem;
}

.for-you-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.for-you-section__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.6rem;
}

.for-you-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #749bde;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.for-you-dot--active {
    background: var(--dark, #00308c);
    transform: scale(1.25);
}

.for-you-section__scroll-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;  
    scrollbar-width: none;
}

.for-you-section__scroll-track::-webkit-scrollbar {
    display: none;
}

.for-you-tile {
    flex: 0 0 275px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.for-you-tile:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
    cursor: pointer;
}

.for-you-tile__image-wrap {
    width: 100%;
    height: 130px;
    overflow: hidden;
}

.for-you-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.for-you-tile__body {
    padding: 0.65rem 0.75rem 0.75rem;
}

.for-you-tile__headline {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    line-height: 1.3;
    color: #111827;
}

.for-you-tile__subheadline {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.for-you-icon-tile {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.for-you-icon-tile__img-wrap {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.for-you-icon-tile:hover .for-you-icon-tile__img-wrap {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transform: scale(1.04);
}

.for-you-icon-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.for-you-icon-tile__label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #111827;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    max-width: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
  html {
    font-size: 13pt;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.warning {
    background-color: white;
    padding: 1rem;
    font-weight: bold;
    margin: 1rem auto;
    text-align: center;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDU2IDQ4Ij48cGF0aCBkPSJNNTYgNDhIMEwyOCAuMDV6IiBmaWxsPSIjZmZjYzAwIi8+PHBhdGggZD0iTTI4IDM1LjA3YTMuMzEgMy4zMSAwIDEgMS0zLjE4IDMuMzJBMy4xOCAzLjE4IDAgMCAxIDI4IDM1LjA3em0tMi40Ni0xM2wtLjE4LTQuNzVoNS4yOGwtLjE4IDQuNzVMMjkuNzEgMzNoLTMuNDJ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
    background-repeat: no-repeat;
    background-position: center  top;
    background-size: 3rem 3rem;
    padding-top: 3rem;
}

.loading {  
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 10px;
}

.loading img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
}
