.skechers-article {
    margin: 0 auto;
    font-family: Mulish-Medium, Arial, Helvetica, sans-serif;
    color: #181818;
    line-height: 1.6;
  }

  /* HERO */
  .skechers-article .hero {
    background: #0063BA;
    color: #ffffff;
    padding: 36px 28px;
    border-radius: 12px 12px 0 0;
    text-align: center;
  }

  .skechers-article .hero h1 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
  }

  .skechers-article .hero p {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.95;
  }

  /* MAIN CONTAINER */
  .skechers-article .container {
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
  }

  /* SUMMARY GRID */
  .skechers-article .summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 20px 0;
  }

  .skechers-article .summary-card {
    background: #CCE0F1;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: all .25s ease;
    cursor: default;
	font-weight: normal !important;
  }

  .skechers-article .summary-card:hover {
    background: #BFD8EE;
  }

  .skechers-article .summary-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px auto;
    fill: #0063BA;
  }

  .skechers-article .summary-card strong {
    display: block;
    color: #003B70 !important;
  }

  /* SPECIFIC OVERRIDE FOR EMAIL TILE */
  .summary-card.email-tile,
  .summary-card.email-tile * {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
  }

  .summary-card .phone-tile,
.summary-card .phone-tile * {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

  /* CONTACT CARDS */
  .skechers-article .contact-card {
    background: #ffffff;
    margin: 0 0 20px 0;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #CCE0F1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: all .25s ease;
  }

  .skechers-article .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  }

  .skechers-article .contact-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
  }

  .skechers-article .icon {
    width: 28px;
    height: 28px;
    fill: #0063BA;
  }

  .skechers-article .contact-left h3 {
    margin: 0 0 6px 0;
    font-size: 20px;
    color: #003B70;
  }

  .skechers-article .contact-left p {
    margin: 0;
    font-size: 16px;
  }

  .skechers-article .contact-right {
    text-align: right;
    min-width: 200px;
  }

  .skechers-article .pill {
    background: #CCE0F1;
    color: #003B70 !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none !important;
  }

  .skechers-article .pill:hover {
    color: #004F95;
  }

  /* HOURS */
  .skechers-article .hours {
    background: #ffffff;
    border: 1px solid #CCE0F1;
    border-radius: 10px;
    padding: 22px;
    margin: 0 0 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  }

  .skechers-article .hours h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #003B70;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .skechers-article .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #EEF5FB;
  }

  .skechers-article .hours-row:last-child {
    border-bottom: none;
  }

  .skechers-article .hours-row span:first-child {
    font-weight: bold;
  }

  /* SHIPPING */
  .skechers-article details {
    margin: 0 0 20px 0;
    border: 1px solid #CCE0F1;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
  }

  .skechers-article summary {
    font-weight: bold;
    color: #003B70;
    cursor: pointer;
  }

  /* RESPONSIVE */
  @media (max-width:900px) {
    .skechers-article {
      max-width: 100%;
    }

    .skechers-article .summary-grid {
      grid-template-columns: 1fr;
    }

    .skechers-article .contact-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .skechers-article .contact-right {
      text-align: left;
    }

    .skechers-article .hours-row {
      flex-direction: column;
      gap: 4px;
    }
  }

	@media (min-width: 768px) {
		.skechers-article .contact-left {
			min-width: 250px;
		}
	}