body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #eef1f4;
  margin: 0;
}

/* ================= HEADER ================= */
.page-header {
  background: #074872;
  color: #fff;
  padding: 60px 20px;
}

.header-content {
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 768px) {
  .header-content {
    margin-top: 4rem;
  }
}

.meetings-breadcrumb {
  font-size: 14px;
  color: #A1A1A1;
  margin-bottom: 10px;
}

.page-header h1 {
  font-size: 36px;
  margin: 0 0 10px;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.page-header p {
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
}

/* ================= CONTAINER ================= */
.meetings-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  min-height: 850px;
  padding: 30px 20px;
}

/* ================= GRID ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  flex: 1;
}

@media (max-width: 992px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
}

/* ================= CARD ================= */
.card {
  background: #f6f8fa;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 320px;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 6px 0;
}

.title {
  font-size: 15px;
  font-weight: 600;
  color: #1F2A37;
  margin-bottom: 6px;
}

.location {
  font-size: 13px;
  color: #1F2A37;
  margin-bottom: 10px;
}

.desc {
  font-size: 13px;
  color: #1F2A37;
  margin-bottom: 10px;
}

.meetings-container a{
  align-self: flex-end;
}

.btn {
  margin-top: auto;
  align-self: flex-end;
  background: #12A79D;
  color: #FFFFFF;
  border: none;
  padding: 7px 14px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
}

.btn:hover {
  background: #12A79D;
}

/* ================= PAGINATION ================= */
.pagination {
  text-align: center;
  margin-top: auto;
  padding-top: 20px;
}

.pagination button {
  background: transparent;
  border: none;
  margin: 0 6px;
  font-size: 14px;
  color: #161616;
  cursor: pointer;
  padding-bottom: 4px;
}

.pagination .active {
  border-bottom: 2px solid #12A79D;
  color: #12A79D;
  font-weight: 600;
}

.pagination .arrow {
  font-weight: bold;
}

.hidden {
  display: none;
}

.meeting-filter {
  margin: 1rem auto;
}

.meeting-filter label {
  display: block;
    font-size: 15px;
    color: #4b5563;
    /* margin: 0 0 10px 4px; */
    display: block;
    font-size: 14px;
    color: #555555;
    margin-bottom: 8px;
}

.meeting-filter__control {
      position: relative;
    max-width: 320px;
    margin-bottom: 24px;
}

.meeting-filter__control select {
      width: 100%;
    padding: 10px 36px 10px 14px;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #d6dbe0;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    border-bottom-color: #074872;
}

/* small triangular caret on the right */
.meeting-filter__control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #9ca3af;
  transform: translateY(-50%);
  pointer-events: none;
}

.meeting-filter__control:focus-within {
  box-shadow: 0 0 0 3px rgba(43, 169, 160, 0.15),
              0 1px 2px rgba(16, 24, 40, 0.06);
}

