/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 02 2025 | 13:44:10 */
        .matches-container-wrapper {

        }

        .matches-main-title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 1px;
        }

        .matches-cards-container {
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .match-card-item {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .match-card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        }

        .match-card-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .match-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .match-date-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.95rem;
            box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
        }

        .match-competition-label {
            color: #764ba2;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .match-competition-label::before {
            content: '';
            font-size: 1.2rem;
        }

        .match-card-body {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 20px;
            margin: 25px 0;
        }

        .match-team-info {
            text-align: center;
        }

        .match-team-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .match-score-display {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 15px;
            font-size: 1.8rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
            min-width: 100px;
			text-align: center;
        }

        .match-condition-badge {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 10px;
        }

        .match-condition-local {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            color: #333;
        }

        .match-condition-visitante {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            color: #333;
        }

        .match-vs-separator {
            color: #999;
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .matches-main-title {
                font-size: 2rem;
            }

            .match-card-item {
                padding: 20px;
            }

            .match-card-body {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .match-score-display {
                font-size: 1.5rem;
                padding: 12px 20px;
            }

            .match-card-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .match-result-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
        }

        .match-win {
            background: #4ade80;
        }

        .match-draw {
            background: #fbbf24;
        }



.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none;
}



  .promo-banner {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 60px auto;
    padding: 40px 48px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
  }

  /* мягкий световой акцент */
  .promo-banner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 180, 80, 0.12);
    filter: blur(40px);
    border-radius: 50%;
  }

  .promo-logo {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    flex-shrink: 0;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
  }

  .promo-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(255, 180, 80, 0.2));
  }

  .promo-info {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .promo-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #718096;
    font-weight: 600;
  }

  .promo-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1a202c;
  }

  .promo-title span {
    color: #ff9900;
    font-weight: 800;
  }

  .promo-sub {
    font-size: 1rem;
    color: #4a5568;
    max-width: 55ch;
  }

  .promo-btn {
    display: inline-block;
    padding: 14px 36px;
    margin-top: 8px;
    border-radius: 12px;
    background: #ff9900;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(255, 153, 0, 0.24);
    transition: 0.25s ease;
    width: fit-content;
  }

  .promo-btn:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 153, 0, 0.32);
  }

  @media (max-width: 850px) {
    .promo-banner {
      flex-direction: column;
      text-align: center;
      padding: 32px;
    }

    .promo-logo {
      margin-bottom: 16px;
    }

    .promo-btn {
      width: 100%;
      max-width: 330px;
      align-self: center;
    }
  }