/* style/index-thomo-schedule.css */

/* Global Page Styles */
.page-index-thomo-schedule {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1);
}

.page-index-thomo-schedule__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-thomo-schedule__section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
}

.page-index-thomo-schedule__section:nth-of-type(even) {
  background-color: var(--dark-bg-2); /* Slightly different dark background for contrast */
}

.page-index-thomo-schedule__heading-2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FF4500; /* Main brand color for headings */
  text-transform: uppercase;
}

.page-index-thomo-schedule__heading-3 {
  font-size: 24px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-index-thomo-schedule__paragraph {
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-index-thomo-schedule__highlight {
  color: #FFD700; /* Gold color for highlights */
  font-weight: bold;
}

.page-index-thomo-schedule__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-index-thomo-schedule__btn-primary,
.page-index-thomo-schedule__btn-secondary,
.page-index-thomo-schedule__btn-small {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  user-select: none;
}

.page-index-thomo-schedule__btn-primary {
  background-color: #FF4500; /* Main brand color */
  color: #ffffff;
  border-color: #FF4500;
}

.page-index-thomo-schedule__btn-primary:hover {
  background-color: #e03c00;
  border-color: #e03c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
}

.page-index-thomo-schedule__btn-secondary {
  background-color: transparent;
  color: #FF4500;
  border-color: #FF4500;
}

.page-index-thomo-schedule__btn-secondary:hover {
  background-color: rgba(255, 69, 0, 0.1);
  color: #e03c00;
  border-color: #e03c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.2);
}

.page-index-thomo-schedule__btn-small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  background-color: #FFD700; /* Gold for small buttons */
  color: #1A202C;
  border-color: #FFD700;
}

.page-index-thomo-schedule__btn-small:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
}

/* HERO Section */
.page-index-thomo-schedule__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px; 
  margin-top: 0; 
}

.page-index-thomo-schedule__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-index-thomo-schedule__hero-image {
  width: 100%;
  margin: 0;
}

.page-index-thomo-schedule__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section */
.page-index-thomo-schedule__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background-color: var(--dark-bg-2);
  border-top: 1px solid var(--dark-border-color);
  border-bottom: 1px solid var(--dark-border-color);
}

.page-index-thomo-schedule__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-index-thomo-schedule__logo-carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-index-thomo-schedule__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-index-thomo-schedule__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #2a2a2a; /* Darker background for logos */
  border: 1px solid #3a3a3a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-index-thomo-schedule__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(255, 69, 0, 0.3);
}

.page-index-thomo-schedule__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-index-thomo-schedule__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Games Section */
.page-index-thomo-schedule__games-section {
  width: 100%;
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

.page-index-thomo-schedule__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-index-thomo-schedule__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-index-thomo-schedule__featured-game-area {
  width: 100%;
}

.page-index-thomo-schedule__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700; /* Gold text */
  text-align: left;
  text-transform: uppercase;
}

.page-index-thomo-schedule__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--dark-bg-3); /* Darker background for cards */
  border: 1px solid var(--dark-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-thomo-schedule__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-index-thomo-schedule__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-thomo-schedule__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-index-thomo-schedule__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-thomo-schedule__games-grid-area {
  width: 100%;
}

.page-index-thomo-schedule__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}

.page-index-thomo-schedule__games-tab {
  background: none;
  border: none;
  padding: 8px 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  position: relative;
  border-radius: 5px;
}

.page-index-thomo-schedule__games-tab:hover {
  color: #ffffff;
  background-color: rgba(255, 69, 0, 0.1);
}

.page-index-thomo-schedule__games-tab.active {
  color: #FF4500; /* Main brand color */
  background-color: rgba(255, 69, 0, 0.2);
  text-decoration: none;
}

.page-index-thomo-schedule__games-tab.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: #FF4500;
  border-radius: 2px;
}

.page-index-thomo-schedule__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-index-thomo-schedule__games-grid.active {
  display: grid;
}

.page-index-thomo-schedule__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-thomo-schedule__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-thomo-schedule__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-thomo-schedule__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.page-index-thomo-schedule__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-thomo-schedule__game-card-title {
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0 5px 10px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Services Intro Section */
.page-index-thomo-schedule__services-intro .page-index-thomo-schedule__heading-2 {
  margin-bottom: 50px;
}

.page-index-thomo-schedule__tabs-wrapper {
  margin-top: 40px;
}

.page-index-thomo-schedule__service-tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-index-thomo-schedule__service-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-index-thomo-schedule__service-tab:hover {
  color: #FFD700;
}

.page-index-thomo-schedule__service-tab.active {
  color: #FF4500;
  border-bottom: 3px solid #FF4500;
}

.page-index-thomo-schedule__service-content {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.page-index-thomo-schedule__service-content.active {
  display: block;
}

.page-index-thomo-schedule__service-content .page-index-thomo-schedule__heading-3 {
  text-align: center;
  color: #FFD700;
  margin-bottom: 30px;
  font-size: 28px;
}

.page-index-thomo-schedule__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.page-index-thomo-schedule__content-image {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-thomo-schedule__content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-thomo-schedule__content-text .page-index-thomo-schedule__paragraph {
  text-align: left;
}

.page-index-thomo-schedule__content-text .page-index-thomo-schedule__btn-primary {
  margin-top: 20px;
}

/* Promotions Section */
.page-index-thomo-schedule__promotions .page-index-thomo-schedule__paragraph {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-index-thomo-schedule__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-thomo-schedule__promo-card {
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-thomo-schedule__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-thomo-schedule__promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-thomo-schedule__promo-card .page-index-thomo-schedule__heading-3 {
  color: #FFD700;
  font-size: 22px;
}

.page-index-thomo-schedule__promo-card .page-index-thomo-schedule__paragraph {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

/* Safety & Support Section */
.page-index-thomo-schedule__safety-support .page-index-thomo-schedule__paragraph {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-index-thomo-schedule__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-thomo-schedule__feature-item {
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-thomo-schedule__feature-item .page-index-thomo-schedule__heading-3 {
  color: #FF4500;
  font-size: 22px;
}

.page-index-thomo-schedule__feature-item .page-index-thomo-schedule__paragraph {
  font-size: 16px;
  text-align: center;
}

/* FAQ Section */
.page-index-thomo-schedule__faq-section {
  background-color: var(--dark-bg-2);
}

.page-index-thomo-schedule__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-thomo-schedule__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border-color);
}

.page-index-thomo-schedule__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: var(--dark-bg-3);
  border-bottom: 1px solid var(--dark-border-color);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-thomo-schedule__faq-item.active .page-index-thomo-schedule__faq-question {
  border-bottom-color: transparent;
}

.page-index-thomo-schedule__faq-question:hover {
  background-color: #2a2a2a;
}

.page-index-thomo-schedule__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-index-thomo-schedule__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-index-thomo-schedule__faq-item.active .page-index-thomo-schedule__faq-toggle {
  color: #FF4500;
  transform: rotate(180deg);
}

.page-index-thomo-schedule__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #f0f0f0;
  background-color: var(--dark-bg-4); /* Slightly lighter dark for answer */
  border-radius: 0 0 8px 8px;
}

.page-index-thomo-schedule__faq-item.active .page-index-thomo-schedule__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
}

.page-index-thomo-schedule__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

/* Blog Section */
.page-index-thomo-schedule__blog-section .page-index-thomo-schedule__paragraph {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-index-thomo-schedule__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-thomo-schedule__blog-card {
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-thomo-schedule__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-thomo-schedule__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-thomo-schedule__blog-card .page-index-thomo-schedule__heading-3 {
  font-size: 20px;
  padding: 15px 20px 0;
  color: #FFD700;
  text-align: left;
}

.page-index-thomo-schedule__blog-card .page-index-thomo-schedule__heading-3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-thomo-schedule__blog-card .page-index-thomo-schedule__heading-3 a:hover {
  color: #FF4500;
}

.page-index-thomo-schedule__blog-card .page-index-thomo-schedule__paragraph {
  font-size: 15px;
  padding: 0 20px 15px;
  text-align: left;
  color: #f0f0f0;
}

.page-index-thomo-schedule__read-more {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px;
  background-color: #1A202C;
  color: #FFD700;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-thomo-schedule__read-more:hover {
  background-color: #FF4500;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-thomo-schedule__heading-2 {
    font-size: 30px;
  }
  .page-index-thomo-schedule__heading-3 {
    font-size: 22px;
  }
  .page-index-thomo-schedule__paragraph {
    font-size: 16px;
  }
  .page-index-thomo-schedule__games-layout {
    grid-template-columns: 1fr;
  }
  .page-index-thomo-schedule__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-index-thomo-schedule__featured-game-image {
    height: 400px;
  }
  .page-index-thomo-schedule__content-grid {
    grid-template-columns: 1fr;
  }
  .page-index-thomo-schedule__content-image {
    height: 280px;
  }
  .page-index-thomo-schedule__service-tabs {
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .page-index-thomo-schedule__section {
    padding: 40px 0;
  }
  .page-index-thomo-schedule__container {
    padding: 0 15px;
  }
  .page-index-thomo-schedule__hero-section {
    padding-top: 10px;
  }
  .page-index-thomo-schedule__heading-2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-index-thomo-schedule__heading-3 {
    font-size: 18px;
  }
  .page-index-thomo-schedule__paragraph {
    font-size: 15px;
  }
  .page-index-thomo-schedule__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-thomo-schedule__btn-primary,
  .page-index-thomo-schedule__btn-secondary,
  .page-index-thomo-schedule__btn-small {
    padding: 12px 25px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .page-index-thomo-schedule__logo-carousel-section {
    padding: 20px 15px;
  }
  .page-index-thomo-schedule__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  .page-index-thomo-schedule__games-section {
    padding: 40px 15px;
  }
  .page-index-thomo-schedule__featured-game-title {
    font-size: 22px;
    text-align: center;
  }
  .page-index-thomo-schedule__featured-game-image {
    height: 250px;
  }
  .page-index-thomo-schedule__games-tabs {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-index-thomo-schedule__games-tab {
    font-size: 16px;
    padding: 6px 10px;
  }
  .page-index-thomo-schedule__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-index-thomo-schedule__game-card-image {
    height: 140px;
  }
  .page-index-thomo-schedule__game-card-title {
    font-size: 13px;
    padding: 0 3px 8px;
  }
  .page-index-thomo-schedule__service-tabs {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  .page-index-thomo-schedule__service-tab {
    font-size: 16px;
    padding: 8px 15px;
  }
  .page-index-thomo-schedule__content-image {
    height: 220px;
  }
  .page-index-thomo-schedule__promo-grid,
  .page-index-thomo-schedule__feature-grid,
  .page-index-thomo-schedule__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-thomo-schedule__promo-card img {
    height: 150px;
  }
  .page-index-thomo-schedule__promo-card .page-index-thomo-schedule__heading-3 {
    font-size: 20px;
  }
  .page-index-thomo-schedule__feature-item .page-index-thomo-schedule__heading-3 {
    font-size: 20px;
  }
  .page-index-thomo-schedule__faq-question {
    padding: 15px;
  }
  .page-index-thomo-schedule__faq-question h3 {
    font-size: 16px;
  }
  .page-index-thomo-schedule__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-index-thomo-schedule__faq-answer {
    padding: 0 15px;
  }
  .page-index-thomo-schedule__faq-item.active .page-index-thomo-schedule__faq-answer {
    padding: 15px !important;
  }
  .page-index-thomo-schedule__faq-answer p {
    font-size: 14px;
  }
  .page-index-thomo-schedule__blog-card img {
    height: 180px;
  }
  .page-index-thomo-schedule__blog-card .page-index-thomo-schedule__heading-3 {
    font-size: 18px;
    padding: 12px 15px 0;
  }
  .page-index-thomo-schedule__blog-card .page-index-thomo-schedule__paragraph {
    font-size: 14px;
    padding: 0 15px 12px;
  }
  .page-index-thomo-schedule__read-more {
    margin: 0 15px 15px;
    font-size: 15px;
    padding: 8px 15px;
  }
}

/* Ensure all images are responsive and do not cause overflow */
.page-index-thomo-schedule img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-index-thomo-schedule__content-image, 
.page-index-thomo-schedule__promo-card img, 
.page-index-thomo-schedule__blog-card img, 
.page-index-thomo-schedule__featured-game-image, 
.page-index-thomo-schedule__game-card-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-index-thomo-schedule img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-thomo-schedule__section,
  .page-index-thomo-schedule__container,
  .page-index-thomo-schedule__card,
  .page-index-thomo-schedule__promo-card,
  .page-index-thomo-schedule__feature-item,
  .page-index-thomo-schedule__blog-card,
  .page-index-thomo-schedule__featured-game,
  .page-index-thomo-schedule__game-card,
  .page-index-thomo-schedule__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* LOGO carousel item must remain fixed size */
  .page-index-thomo-schedule__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    flex-shrink: 0 !important;
  }
}