﻿/* File: Plugins/Nop.Plugin.Misc.ClassSupplyLists/Contents/css/hos-schools-page.css */
.hos-schools-hero {
  margin: 0 0 28px;
}

.hos-schools-hero__inner {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(14, 165, 233, 0.05));
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.hos-schools-hero__copy {
  margin: 0 0 18px;
  text-align: center;
}

.hos-schools-hero__title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2937;
}

.hos-schools-hero__subtitle {
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.hos-schools-hero__search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 980px; /* Ensures the search bar is not too wide */
  padding: 0 20px; /* Adds spacing on the sides if necessary */
}

  .hos-schools-hero__search > * {
    width: 100%;
    max-width: 600px; /* Controls the max width of the search bar */
  }

.hos-schools-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin: 0 0 28px;
  align-items: start;
}

.hos-schools-popular {
  margin: 0;
}

.hos-partnerPromo {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.hos-partnerPromo__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hos-partnerPromo__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.hos-partnerPromo__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.hos-partnerPromo__list {
  margin: 0 0 20px;
  padding: 0 0 0 18px;
  color: #374151;
}

  .hos-partnerPromo__list li {
    margin: 0 0 8px;
  }

.hos-partnerPromo__actions {
  margin-top: 10px;
}

.hos-partnerPromo__btn {
  min-width: 220px;
  text-align: center;
  padding: 12px 24px; /* Adds padding inside the button */
  background-color: #1d4ed8; /* Blue background color */
  color: white; /* White text color */
  border: none; /* Removes any border */
  border-radius: 8px; /* Rounded corners */
  font-size: 16px; /* Adjust font size */
  font-weight: 600; /* Make text bold */
  cursor: pointer; /* Changes cursor to pointer on hover */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition on hover */
}

  .hos-partnerPromo__btn:hover {
    background-color: #2563eb; /* Darker blue on hover */
    transform: translateY(-2px); /* Small lift effect on hover */
  }

  .hos-partnerPromo__btn:focus {
    outline: none; /* Removes the outline when the button is focused */
  }

@media (max-width: 991px) {
  .hos-schools-grid {
    grid-template-columns: 1fr;
  }

  .hos-schools-hero__inner {
    padding: 22px;
  }

  .hos-schools-hero__title {
    font-size: 26px;
  }

  .hos-partnerPromo__title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .hos-schools-hero__inner,
  .hos-partnerPromo {
    padding: 18px;
    border-radius: 12px;
  }

  .hos-schools-hero__title {
    font-size: 22px;
  }

  .hos-schools-hero__subtitle,
  .hos-partnerPromo__text {
    font-size: 14px;
  }
}
