/* CTWC Tour Slide - namespaced to avoid theme conflicts */
.ctwc-event-container {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-image:
    linear-gradient(45deg, #111 25%, transparent 25%),
    linear-gradient(-45deg, #111 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #111 75%),
    linear-gradient(-45deg, transparent 75%, #111 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.ctwc-container {
  position: relative;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.ctwc-title {
  color: #FFD700 !important;
  font-size: 80px;
  margin: 0;
  line-height: 1;
}

.ctwc-download-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  padding: 8px 12px;
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.ctwc-title-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.ctwc-notes {
  width: 150px;
}

.ctwc-logo {
  height: 120px;
  width: auto;
}

.ctwc-tour-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 1fr;
  gap: 20px;
  text-align: left;
  margin: 0 auto 10px auto;
}

.ctwc-column {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  line-height: 33px;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: black;
  paint-order: stroke fill;
}

.ctwc-event-name {
  font-weight: bold;
  color: #FFD700;
}

.ctwc-location,
.ctwc-date {
  color: white;
  font-weight: bold;
}

.ctwc-inworks {
  color: #9b9a9a;
}

.ctwc-note {
  font-size: 0.9em;
  margin-top: 5px;
  font-weight: bold;
}

.ctwc-tentative-note { color: white; }
.ctwc-inworks-note { color: #9b9a9a; }

@media (max-width: 900px) {
  .ctwc-title { font-size: 48px; }
  .ctwc-logo { height: 80px; }
  .ctwc-column { font-size: 20px; line-height: 24px; -webkit-text-stroke-width: 2px; }
  .ctwc-tour-grid { grid-template-columns: 1.2fr 1fr 0.8fr; gap: 12px; }
}