html, body {
    min-height: 100%;
    height: auto;
}

body {
    margin: 0;
    position: relative;
    background: none !important;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/media/tło.webp');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(10, 10, 20, 0.45);
    background-blend-mode: darken;
    z-index: -1;
}

.week-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  width: 100%;
}

.week-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center; 
  gap: 8px;
  background: linear-gradient(180deg, #f55d32 0%, #e54b22 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 
              inset 0 1px 1px rgba(255, 255, 255, 0.1); 
  border: none; 
  border-bottom: 2px solid #c53a1a; 
  transition: all 0.2s ease-out; 
  cursor: pointer;
  white-space: nowrap;
}

.week-arrow:hover {
  background: linear-gradient(180deg, #ff7b52 0%, #f55d32 100%);
  transform: translateY(-3px); 
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.week-arrow:active {
  transform: translateY(1px); 
  background: #d4401a; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 
              inset 0 1px 2px rgba(0, 0, 0, 0.1); 
  border-bottom-color: #c53a1a;
}

.week-range {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px; 
  padding: 12px 24px; 
  color: #f0f0f0; 
  font-weight: 500;
  font-size: 15px;
  min-width: 160px;
  text-align: center;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}


@media (max-width: 1024px) {
    body::before {
        position: absolute;
        background-attachment: scroll;
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    html, body {
        min-height: 100%;
    }

    body {
        position: relative;
        overflow-x: hidden;
        background-color: rgba(5, 15, 30, 0.75);
        background-blend-mode: multiply;
    }

    body::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        background-image: url('/assets/media/tło.webp');
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: rgba(5, 15, 30, 0.75);
        background-blend-mode: multiply;
        z-index: -1;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    body::before {
        background-position: center center;
        background-size: cover;
    }
}


@media (max-width: 480px) {

    header {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .profile-card {
        padding: 8px 12px;
        gap: 8px;
        max-width: 100%;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
    }
    
    .socials img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    
    .kick-shop-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
        z-index: 1000;
    }
    
    .welcome {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .welcome-container {
        margin: 50px 0 30px 0;
        padding: 0 10px;
    }
    
    .schedule-table-container {
        padding: 8px;
        margin: 0 auto 30px auto;
        max-width: 95vw;
        position: relative;
    }
    
    .schedule-table-container::after {
        content: "← Przewiń poziomo →";
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        color: var(--color-text-secondary);
        text-align: center;
        width: 100%;
        pointer-events: none;
        opacity: 0.8;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.8; }
        50% { opacity: 0.4; }
    }
    
    .schedule-table::-webkit-scrollbar {
        height: 6px;
    }
    
    .schedule-table::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .schedule-table::-webkit-scrollbar-thumb {
        background: var(--color-primary-glow);
        border-radius: 3px;
    }
    
    .schedule-table::-webkit-scrollbar-thumb:hover {
        background: #f75535;
    }
    
    .schedule-table {
        font-size: 0.7rem;
        min-width: 100%;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-table thead,
    .schedule-table tbody,
    .schedule-table tr {
        display: block;
    }
    
    .schedule-table thead tr {
        display: flex;
        min-width: 700px;
    }
    
    .schedule-table tbody tr {
        display: flex;
        min-width: 700px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 4px 2px;
        max-width: 100px;
        min-width: 100px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .schedule-table th {
        font-size: 0.6rem;
        padding: 6px 2px;
    }
    
    .schedule-table td {
        font-size: 0.6rem;
        padding: 4px 2px;
    }
    
    .day-label {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .day-date {
        font-size: 0.5rem;
        margin-top: 1px;
    }
    
    .schedule-item {
        padding: 4px;
        margin-bottom: 4px;
        font-size: 0.55rem;
        text-align: center;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .schedule-item .time {
        font-weight: bold;
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .schedule-item .title {
        font-size: 0.5rem;
        line-height: 1.2;
    }
    
    .schedule-item .title a {
        color: var(--color-primary-glow);
        text-decoration: none;
        display: block;
        padding: 2px;
    }
    
    .sponsor-track {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .sponsor {
        padding: 15px;
        min-height: 280px;
    }
    
    .sponsor-logo {
        width: 50px;
        height: 50px;
    }
    
    .sponsor-name {
        font-size: 1.1em;
    }
    
    .sponsor-desc {
        font-size: 0.85em;
    }
    
    .promo-code {
        font-size: 0.8em;
        padding: 8px 0;
    }
    
    .about-and-specs-container {
        padding: 0 5px;
        gap: 15px;
    }
    
    .about-section, .other-section {
        padding: 8px;
        gap: 15px;
    }
    
    .section-content h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .section-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .latest {
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .latest h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .latest .posts {
        gap: 20px;
        flex-direction: column;
    }
    
    .latest .posts > div {
        flex: none;
        max-width: 100%;
    }
    
    .latest .youtube .post img {
        height: 140px;
    }
    
    .latest .instagram .post {
        height: 400px;
    }
    
    .kick-container {
        padding: 10px;
        margin: 0 auto 20px auto;
    }
    
    .kick-player-text {
        font-size: 1rem;
        margin: 10px 0 15px 0;
    }
    
    .kick-player-frame {
        margin-bottom: 10px;
    }
    
    .kick-chat-container {
        height: 300px;
        margin-top: 15px;
    }
    
    .toast-container {
        width: 95%;
        left: 2.5%;
        right: 2.5%;
        bottom: 10px;
    }
    
    .toast {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .toast-icon img {
        width: 24px;
        height: 24px;
    }
    
    .toast-message {
        font-size: 0.9rem;
        padding-right: 20px;
    }

    .week-navigation {
        gap: 10px;
        padding: 15px 0;
    }
    .week-arrow,
    .week-range {
        font-size: 13px;
        padding: 10px 18px;
        width: 90%; 
        min-width: 0;
    }

    footer {
        padding: 0 10px 10px 10px;
    }
    
    .watermark, .watermark-art {
        font-size: 12px;
        padding: 4px 8px;
    }

    .profile-card::after {
        width: 60px;
        height: 60px;
        top: -15px;
        left: 50%;
        transform: translateX(-50%) rotate(-10deg);
    }

    #snow-container {
        pointer-events: none;
        z-index: 1000;
    }

    .christmas-lights-red,
    .christmas-lights-green,
    .christmas-lights-orange,
    .christmas-lights-blue {
        height: 50px;
        background-size: auto 50px;
    }

    .advent-calendar-container::before,
    .kick-container::before,
    .about-section::before,
    .other-section::before {
        height: 10px;
        top: -5px;
    }
}

@media (min-width: 701px) {
    .sponsor {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        min-width: auto;
    }
    .sponsors {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1200px) {
    .sponsor-track {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .about-and-specs-container {
      padding: 0 20px;
      gap: 30px;
    }
    .about-section, .other-section {
        padding: 20px 10px;
        gap: 30px;
    }
    .section-content h2 {
        font-size: 36px;
    }
}


@media (max-width: 1024px) {
    
    .welcome {
        font-size: 2.2rem;
        width: auto;
        white-space: normal;
        border-right: none;
        animation: none;
    }
    .schedule-table {
        min-width: 600px;
    }
    .schedule-table th,
    .schedule-table td {
        max-width: 120px;
        padding: 12px 10px;
    }
    .kick-shop-btn {
        top: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .sponsor-track {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .latest .posts > div {
        flex: 1 1 280px;
        max-width: 350px;
    }
    .latest .youtube .post img {
        height: 190px;
    }
    .latest .instagram .post {
        height: 480px;
    }
    .about-and-specs-container {
        padding: 0 20px;
        gap: 30px;
    }
    .about-section, .other-section {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
    }
    .about-section.reverse {
        flex-direction: column;
    }
    .section-content {
        text-align: center;
    }
    .section-image img {
        margin-top: 15px;
    }

    .latest h2 {
        font-size: 28px;
    }
    .latest .posts {
        gap: 40px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 20px;
    }
    .watermark-art {
        position: relative;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 1000px) {
  .kick-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .kick-chat-container {
    width: 100%;
    max-width: 800px;
    height: 500px;
  }

  .kick-chat-container iframe {
    height: 100%;
  }
}

@media (max-width: 900px) {
  .kick-player-layout {
    flex-direction: column;
  }
  .kick-chat-frame {
    width: 100%;
    flex: none;
    height: 500px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
    .welcome {
        font-size: 1.8rem;
    }
    
    .schedule-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-table thead,
    .schedule-table tbody,
    .schedule-table tr {
        display: block;
    }
    
    .schedule-table thead tr {
        display: flex;
        min-width: 700px;
    }
    
    .schedule-table tbody tr {
        display: flex;
        min-width: 700px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 6px 4px;
        max-width: 100px;
        min-width: 100px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .schedule-item {
        padding: 6px;
        margin-bottom: 6px;
        font-size: 0.65rem;
        text-align: center;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .schedule-item .time {
        font-weight: bold;
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .schedule-item .title {
        font-size: 0.6rem;
        line-height: 1.3;
    }
    
    .schedule-item .title a {
        color: var(--color-primary-glow);
        text-decoration: none;
        display: block;
        padding: 3px;
    }
    
    .sponsor-track {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .sponsor {
        min-height: 320px;
        padding: 18px;
    }
    
    .sponsor-logo {
        width: 60px;
        height: 60px;
    }
    
    .latest .youtube .post img {
        height: 180px;
    }
    
    .latest .instagram .post {
        height: 450px;
    }
    
    .kick-chat-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .socials img {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }
    
    .kick-shop-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .promo-code {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .schedule-table-container {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .schedule-table-container::after {
        content: "← Przewiń poziomo →";
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.8rem;
        color: var(--color-text-secondary);
        text-align: center;
        width: 100%;
        pointer-events: none;
        opacity: 0.8;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.8; }
        50% { opacity: 0.4; }
    }
    
    .schedule-table::-webkit-scrollbar {
        height: 8px;
    }
    
    .schedule-table::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .schedule-table::-webkit-scrollbar-thumb {
        background: var(--color-primary-glow);
        border-radius: 4px;
    }
    
    .schedule-table::-webkit-scrollbar-thumb:hover {
        background: #f75535;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .section-content .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .latest .posts > div {
        margin-bottom: 20px;
    }

    .advent-calendar-container {
        padding: 15px 10px;
        width: 95%;
        border-width: 1px;
    }

    .advent-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    #countdown-timer {
        font-size: 1.8rem;
        padding: 8px 15px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .tree-container {
        max-width: 90%;
        margin: 0 auto 30px auto;
        aspect-ratio: 3 / 4;
    }

    .ornament {
        width: 14%;
    }

    .ornament:hover {
        transform: scale(1);
        z-index: 10;
    }
    
    .pre-advent-message {
        padding: 20px;
        width: 90%;
        margin: 0 auto;
    }

    .pre-advent-message h3 {
        font-size: 1.5rem;
    }
    
    .pre-advent-message p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    header,
    .welcome-container,
    .schedule-table-container,
    .latest {
        margin-bottom: 40px;
    }
    header {
        flex-direction: column;
        align-items: center;
        position: relative;
        gap: 10px;
        padding: 10px;
    }
    .profile-card {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
        text-align: center;
        width: 100%;
        max-width: 320px;
    }
    .avatar {
        width: 60px;
        height: 60px;
    }
    .socials {
        justify-content: center;
        gap: 8px;
    }
    .socials img {
        width: 24px;
        height: 24px;
        margin-right: 0;
    }
    .kick-shop-btn {
        position: fixed;
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    .welcome-container {
        margin-top: 20px;
    }
    .welcome {
        font-size: 1.8rem;
        white-space: normal;
        border-right: none;
        animation: none;
        width: auto;
    }
    .additional-text {
        font-size: 1.1rem;
    }
    .schedule-table-container {
        padding: 10px;
        max-width: 100vw;
        position: relative;
    }
    
    .schedule-table-container::after {
        content: "← Przewiń poziomo →";
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.75rem;
        color: var(--color-text-secondary);
        text-align: center;
        width: 100%;
        pointer-events: none;
        opacity: 0.8;
        animation: pulse 2s infinite;
    }
    
    .schedule-table::-webkit-scrollbar {
        height: 7px;
    }
    
    .schedule-table::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .schedule-table::-webkit-scrollbar-thumb {
        background: var(--color-primary-glow);
        border-radius: 3px;
    }
    
    .schedule-table::-webkit-scrollbar-thumb:hover {
        background: #f75535;
    }
    .schedule-table {
        min-width: 100%;
        max-width: 100vw;
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-table thead,
    .schedule-table tbody,
    .schedule-table tr {
        display: block;
    }
    
    .schedule-table thead tr {
        display: flex;
        min-width: 700px;
    }
    
    .schedule-table tbody tr {
        display: flex;
        min-width: 700px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 6px 4px;
        max-width: 120px;
        min-width: 100px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .schedule-item {
        padding: 8px;
        margin-bottom: 8px;
        font-size: 0.7rem;
        text-align: center;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .schedule-item .time {
        font-weight: bold;
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .schedule-item .title {
        font-size: 0.65rem;
        line-height: 1.4;
    }
    
    .schedule-item .title a {
        color: var(--color-primary-glow);
        text-decoration: none;
        display: block;
        padding: 4px;
    }
    .sponsor-logo {
        width: 60px;
        height: 60px;
        padding: 5px;
    }
    .sponsor-name {
        font-size: 1.1em;
    }
    .sponsor-desc {
        font-size: 0.9em;
    }
    .promo-code {
        padding: 6px 0;
        font-size: 0.9em;
    }
    .about-and-specs-container {
      padding: 0 10px;
      gap: 20px;
    }
    .about-section, .other-section {
        padding: 10px 5px;
    }
    .section-content h2 {
        font-size: 26px;
    }
    .latest .youtube .post img {
        height: 160px;
    }
    .latest .instagram .post {
        height: 480px;
    }

    .schedule-title {
        font-size: 1.5rem; 
    }
    .sponsor {
        min-height: auto; 
    }
    .section-image img {
        width: 100%; 
        height: auto;
    }
    .latest h2 {
        font-size: 26px;
    }
    .latest .posts {
        gap: 30px; 
    }
    .kick-container {
        padding: 15px; 
    }
    .kick-player-text {
        font-size: 1.2rem; 
    }

    .week-navigation {
        flex-direction: column; 
        gap: 12px;
        padding: 20px 10px;
    }
    .week-arrow,
    .week-range {
        font-size: 14px;
        padding: 12px 20px;
        width: 80%; 
        max-width: 300px; 
        min-width: 0; 
    }
    
    footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 20px;
    }
    .watermark-art {
        position: relative;
        right: auto;
        bottom: auto;
    }
    
    .toast-container {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 15px;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .advent-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 8px;
        margin-top: 15px;
    }

    .advent-door {
        border-radius: 10px;
    }

    .door-front {
        font-size: 1.5rem;
    }
    
    .advent-door.unlocked:hover,
    .advent-door.opened:hover {
        transform: none;
    }
    
    .advent-door.unlocked:active {
        transform: scale(0.95);
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .advent-modal-content {
        padding: 15px;
        width: 90%;
        max-width: none;
        gap: 10px;
        border-width: 1px;
    }

    #modal-image {
        max-height: 40vh;
        border-width: 1px;
    }

    #modal-title {
        font-size: 1.3rem;
        margin-top: 5px;
    }

    .stream-time {
        font-size: 1.1rem;
    }

    .stream-title {
        font-size: 0.9rem;
    }

    .modal-close-btn {
        top: 5px;
        right: 10px;
        font-size: 2rem;
        padding: 5px;
    }
}

@media (max-width: 480px) and (min-width: 320px) {

    .welcome {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .schedule-table {
        font-size: 0.65rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 3px 1px;
        max-width: 70px;
    }
    
    .sponsor {
        padding: 12px;
        min-height: 260px;
    }
    
    .sponsor-logo {
        width: 45px;
        height: 45px;
    }
    
    .sponsor-name {
        font-size: 1em;
    }
    
    .sponsor-desc {
        font-size: 0.8em;
    }
    
    .latest .youtube .post img {
        height: 120px;
    }
    
    .latest .instagram .post {
        height: 350px;
    }
    
    .kick-chat-container {
        height: 250px;
    }
    
    .section-content h2 {
        font-size: 20px;
    }
    
    .section-image img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .profile-card:hover,
    .sponsor:hover,
    .about-section:hover,
    .other-section:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .profile-card,
    .schedule-table-container,
    .sponsor,
    .about-section,
    .other-section,
    .kick-container {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    .socials a,
    .kick-shop-btn,
    .promo-code {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    
    .section-content .about-text p {
        color: rgba(226, 232, 240, 0.9);
    }

    .section-image img,
    .latest .youtube .post img,
    .latest .instagram .post img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    
    .welcome-container {
        margin: 30px 0 20px 0;
    }
    
    .welcome {
        font-size: 1.4rem;
    }
    
    .schedule-table-container {
        margin: 0 auto 20px auto;
    }
    
    .latest {
        margin-bottom: 30px;
    }
    
    .kick-chat-container {
        height: 200px;
    }
    
    .sponsor-track {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .sponsor {
        min-height: 240px;
        padding: 12px;
    }
}