@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f7f9fb;
  color: #222;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}
ul li {
  list-style-type: none;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.tag {
  background: rgba(5, 162, 195, 0.05);
  display: inline-flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  font-size: 10px;
  color: rgb(0, 109, 142);
  font-weight: 600;
  text-transform: uppercase;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadscrumb {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.breadscrumb li {
  font-size: 12px;
  color: #444;
}
.breadscrumb li a {
  color: #60B2CB;
}
.breadscrumb li::after {
  content: ">";
  margin-right: 5px;
  color: #60B2CB;
}
.breadscrumb li:last-child::after {
  content: "";
}

.news-time {
  color: #666;
  position: relative;
  font-size: 12px;
}

.news-time::before {
  content: "";
  background: url("../icons/clock-outline.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.news-title {
  color: #4E5462;
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}

.section-padding {
  padding: 30px 0;
}

.carousel-item img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.carousel-news-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  z-index: 3;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
  margin-right: 4px;
  border: none;
}

.carousel-indicators .active {
  background: rgb(255, 255, 255);
  width: 26px;
  border-radius: 6px;
}

.carousel-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.58%, rgba(0, 0, 0, 0.7) 91.72%);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.carousel-news-tag {
  background: rgb(5, 162, 195);
  border-radius: 50px;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  margin-bottom: 8px;
}

.carousel-news-title,
.carousel-news-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.carousel-news-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.carousel-news-description {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.carousel-news-content .news-time {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.carousel-news-content .news-time::before {
  background: url("../icons/clock-white.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.side-card-list {
  max-height: 350px;
  overflow-y: auto;
}
.side-card-list .side-card-description-box {
  width: 100%;
}
.side-card-list .news-time {
  margin-right: 10px;
  font-size: 10px;
}
.side-card-list .news-time::before {
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
}

.trending__side__title {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}

.side-card-description {
  font-size: 12px;
  color: #4E5462;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recent {
  margin-top: 30px;
}

.side-card-list::-webkit-scrollbar-track {
  background-color: #E6F6F9;
}

.side-card-list::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.side-card-list::-webkit-scrollbar-thumb {
  background-color: #006D8E;
  border-radius: 8px;
}

/*
Source - https://stackoverflow.com/a
Posted by Arun Aravind, modified by community. See post 'Timeline' for change history
Retrieved 2026-01-03, License - CC BY-SA 4.0
*/
.dropdown-check-list {
  display: inline-block;
}

.dropdown-check-list .anchor {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 5px 50px 5px 10px;
  border: 1px solid #ccc;
}

.dropdown-check-list .anchor:after {
  position: absolute;
  content: "";
  border-left: 2px solid black;
  border-top: 2px solid black;
  padding: 5px;
  right: 10px;
  top: 22%;
  transform: rotate(-135deg);
}

.dropdown-check-list ul.items {
  padding: 10px;
  display: none;
  margin: 0;
  border: 0px solid #ccc;
  border-top: none;
}

.dropdown-check-list ul.items li {
  list-style: none;
  margin-bottom: 5px;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.dropdown-check-list ul.items li input {
  width: 18px;
  height: 18px;
  accent-color: #006D8E;
  margin-right: 5px;
}

.dropdown-check-list.visible .items {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.recent-news-section .heading-row {
  margin-bottom: 15px;
}
.recent-news-section h2 {
  margin-bottom: 0px;
}

.dropdown-check-list {
  position: relative;
}
.dropdown-check-list .anchor {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.dropdown-check-list .anchor img {
  height: 20px;
  margin-right: 5px;
}
.dropdown-check-list .items {
  background: #fff;
  position: absolute;
  top: 35px;
  left: -395px;
  width: 500px;
  border-radius: 8px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
  z-index: 9;
  max-height: 300px;
  overflow-y: auto;
}

.footer {
  margin-top: 60px;
  background: #006D8E;
  padding: 4% 5%;
  display: flex;
}

.footer .left_container, .footer .right_container {
  display: inline-block;
  padding: 0 12%;
  vertical-align: top;
  width: 48%;
}

.footer a {
  color: #fff;
  display: block;
  margin: 5% 0;
}

.footer .logo {
  background-image: url(../images/sports-waves-white-logo.png);
  background-repeat: no-repeat;
  background-size: 90%;
  display: inline-block;
  height: 75px;
  margin: 1% 0 0 -3%;
  width: 240px;
}

.footer .disclaimer {
  color: hsla(0, 0%, 87%, 0.37);
  font-weight: 100;
}

@media screen and (max-width: 991px) {
  .trending__layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 95%;
    width: 100%;
  }
  h2 {
    font-size: 22px;
  }
  .trending__layout .trending__side,
  .trending__layout .carousel {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 575px) {
  .container {
    max-width: calc(100% - 15px);
    padding: 0px;
  }
  h2 {
    font-size: 20px;
  }
  .news-title {
    font-size: 14px;
  }
  .dropdown-check-list .items {
    left: -220px;
    width: 320px;
  }
  .dropdown-check-list ul.items li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.header .nav a {
  font-size: 18px;
  margin: 0 12px;
  cursor: pointer;
  color: #666;
}
.header .nav a.active {
  color: #60B2CB;
  font-weight: 600;
}

@media screen and (max-width: 575px) {
  .header .nav a {
    font-size: 16px;
    margin: 0 8px;
  }
}
.tabs {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.tabs button {
  background: none;
  border: none;
  padding: 14px 16px;
  cursor: pointer;
}
.tabs button.active {
  color: #60B2CB;
  border-bottom: 2px solid #60B2CB;
}

.trending {
  margin-top: 30px;
}
.trending__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.trending__main {
  position: relative;
}
.trending__main img {
  width: 100%;
  border-radius: 12px;
}
.trending__overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  border-radius: 12px;
}
.trending__overlay h3 {
  margin: 10px 0;
}
.trending__side {
  background: #fff;
  padding: 15px 8px 15px 15px;
  border-radius: 12px;
  box-shadow: 0px 7px 30px 0px #EDF1F2;
}
.trending__side .side-card {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.trending__side .side-card img {
  height: 80px;
  width: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.news-card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.loader img {
  border: 1px solid #ddd;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
.events {
  margin-top: 30px;
}

/* ===== Upcoming Events ===== */
.events-hero {
  background: #fff;
  border-radius: 12px;
}
.events-hero__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.events-hero h2 {
  margin-bottom: 0px;
}
.events-hero__actions {
  display: flex;
  gap: 10px;
}
.events-hero__actions .search input {
  padding: 10px 14px 10px 30px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  width: 260px;
  background-image: url(../icons/search-icon.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 16px 16px;
}
.events-hero__actions .filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}
.events-hero__card {
  position: relative;
}
.events-hero__card img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.events-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  border-radius: 12px;
}
.events-hero__overlay h3 {
  margin: 8px 0;
  font-size: 22px;
}
.events-hero__overlay p {
  opacity: 0.9;
}

.events-list {
  margin-top: 30px;
}
.events-list h2 {
  margin-bottom: 15px;
}

.event-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.event-item .event-date {
  width: 70px;
  align-self: stretch;
  background: #60B2CB;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 20px;
}
.event-item .event-date .day {
  font-size: 22px;
  font-weight: 700;
}
.event-item .event-date .month {
  font-size: 12px;
  letter-spacing: 1px;
}
.event-item .event-content {
  flex: 1;
}
.event-item .event-content h4 {
  font-size: 18px;
  margin: 10px 0;
}
.event-item .event-content .news-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.event-item .event-time {
  color: #666;
  font-size: 13px;
  white-space: nowrap;
}

@media screen and (max-width: 575px) {
  .events-hero {
    padding: 0px;
  }
  h2 {
    font-size: 20px;
  }
  .events-hero__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .events-hero__actions .search input, .events-hero__actions, .search {
    width: 100%;
  }
  .event-item .event-content h4 {
    font-size: 16px;
  }
  .event-item .event-content .news-title {
    font-size: 14px;
  }
}
.news-detail-card img {
  height: 480px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}
.news-detail-card h2 {
  margin-bottom: 0px;
}
.news-detail-card .news-detail-description {
  margin-top: 12px;
}

.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: rgb(107, 114, 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::-moz-placeholder {
  color: #6b7280;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #60B2CB;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #60B2CB;
  color: #fff;
  padding: 13px 5px;
  border: none;
  border-radius: 0.375rem;
}/*# sourceMappingURL=main.css.map */