/* =========================================================
   Annual General Meeting
   ========================================================= */

:root {
  --agm-primary: #00b0ec;
  --agm-primary-hover: #00b0ec;
  --agm-primary-light: #33a9e124;

  --agm-bg-page: #f7f8f7;
  --agm-bg-card: #ffffff;

  --agm-text-dark: #222222;
  --agm-text-muted: #555555;
  --agm-text-subtle: #777777;

  --agm-border-color: #e5e8e5;

  --agm-radius-sm: 8px;
  --agm-radius-md: 12px;
  --agm-radius-lg: 16px;

  --agm-shadow-sm: 0 3px 15px rgba(0, 0, 0, 0.035);
  --agm-shadow-md: 0 8px 28px rgba(0, 0, 0, 0.055);
  --agm-shadow-hover: 0 14px 32px rgba(0, 0, 0, 0.09);

  --agm-transition: all 0.25s ease;
}


/* =========================================================
   PAGE
   ========================================================= */

.agm-page {
  width: 100%;
  background: var(--agm-bg-page);
  color: var(--agm-text-dark);
  overflow: hidden;
}

.agm-page *,
.agm-page *::before,
.agm-page *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.agm-hero {
  position: relative;
  padding: 85px 0 75px;
  background: var(--agm-bg-card);
  border-bottom: 1px solid var(--agm-border-color);
  text-align: center;
}

.agm-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 55px;
  height: 3px;
  background: var(--agm-primary);
  transform: translateX(-50%);
}

.agm-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
  padding: 7px 15px;

  color: var(--agm-primary);
  background: var(--agm-primary-light);

  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.agm-title {
  max-width: 900px;
  margin: 0 auto;

  color: var(--agm-text-dark);

  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.5px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.agm-section {
  padding: 75px 0;
}

.agm-section + .agm-section {
  border-top: 1px solid var(--agm-border-color);
}

.agm-section .container {
  max-width: 1140px;
}

.agm-section-title {
  margin: 0 0 32px;

  color: var(--agm-text-dark);

  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.agm-section-title.text-center {
  margin-bottom: 38px;
}


/* =========================================================
   MEETING INFORMATION
   ========================================================= */

.agm-info-card {
  display: flex;
  align-items: center;

  width: 100%;
  min-height: 112px;
  height: 100%;

  padding: 24px;

  background: var(--agm-bg-card);
  border: 1px solid var(--agm-border-color);
  border-radius: var(--agm-radius-md);

  box-shadow: var(--agm-shadow-sm);

  transition: var(--agm-transition);
}

.agm-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--agm-shadow-hover);
}

.agm-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 50px;

  width: 50px;
  height: 50px;

  margin-right: 18px;

  background: var(--agm-primary-light);
  color: var(--agm-primary);

  border-radius: 50%;

  font-size: 20px;
}

.agm-info-card > div:last-child {
  min-width: 0;
}

.agm-info-label {
  display: block;

  margin-bottom: 5px;

  color: var(--agm-text-subtle);

  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.agm-info-value {
  color: var(--agm-text-dark);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;

  overflow-wrap: anywhere;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.agm-content-card {
  padding: 40px 45px;

  background: var(--agm-bg-card);

  border: 1px solid var(--agm-border-color);
  border-radius: var(--agm-radius-lg);

  box-shadow: var(--agm-shadow-md);
}

.agm-content-card .agm-section-title {
  margin-bottom: 22px;
  font-size: 25px;
}

.agm-description {
  color: var(--agm-text-muted);

  font-size: 16px;
  line-height: 1.85;
}

.agm-description p {
  margin-bottom: 16px;
}

.agm-description p:last-child {
  margin-bottom: 0;
}

.agm-description ul,
.agm-description ol {
  margin-bottom: 16px;
  padding-left: 22px;
}

.agm-description li {
  margin-bottom: 7px;
}


/* =========================================================
   NOTE
   ========================================================= */

.agm-note {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 21px 24px;

  background: var(--agm-primary-light);

  border-left: 4px solid var(--agm-primary);
  border-radius: var(--agm-radius-sm);
}

.agm-note-icon {
  flex: 0 0 auto;

  color: var(--agm-primary);

  font-size: 20px;
  line-height: 1.4;
}

.agm-note strong {
  display: block;

  margin-bottom: 5px;

  color: var(--agm-text-dark);

  font-size: 15px;
  font-weight: 700;
}

.agm-note p {
  margin: 0;

  color: var(--agm-text-muted);

  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   INVITATION SECTION
   ========================================================= */

.agm-invitation-section {
  background: var(--agm-bg-card);
}

.agm-invitation-section .row {
  align-items: flex-start;
}

/*
 * Invitation cards
 *
 * Do NOT force a height here.
 * The document should retain its original proportions.
 */

.agm-letter-card {
  width: 100%;
  padding: 10px;

  background: #ffffff;

  border: 1px solid var(--agm-border-color);
  border-radius: var(--agm-radius-md);

  box-shadow: var(--agm-shadow-md);

  overflow: hidden;

  transition: var(--agm-transition);
}

.agm-letter-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--agm-shadow-hover);
}

/*
 * IMPORTANT:
 * Keep natural image dimensions.
 * Do not use object-fit: cover.
 */

.agm-letter-card img {
  display: block;

  width: 100%;
  max-width: 100%;
  height: auto;

  margin: 0;

  object-fit: contain;

  border-radius: 6px;
}


/* =========================================================
   RELATED LINKS
   ========================================================= */

.agm-related-card {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background: var(--agm-bg-card);

  border: 1px solid var(--agm-border-color);
  border-radius: var(--agm-radius-md);

  color: inherit;
  text-decoration: none;

  box-shadow: var(--agm-shadow-sm);

  transition: var(--agm-transition);
}

.agm-related-card:hover,
.agm-related-card:focus-visible {
  color: inherit;
  text-decoration: none;

  transform: translateY(-4px);

  box-shadow: var(--agm-shadow-hover);

  outline: none;
}

.agm-related-image {
  width: 100%;
  overflow: hidden;
  background: #f1f2f1;
}

.agm-related-image img {
  display: block;

  width: 100%;
  height: 200px;

  object-fit: cover;

  transition: transform 0.35s ease;
}

.agm-related-card:hover .agm-related-image img {
  transform: scale(1.035);
}

.agm-related-content {
  display: flex;
  align-items: center;

  min-height: 64px;

  padding: 17px 20px;
}

.agm-related-content span {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: var(--agm-primary);

  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;

  transition: var(--agm-transition);
}

.agm-related-content i {
  font-size: 14px;

  transition: transform 0.2s ease;
}

.agm-related-card:hover .agm-related-content span {
  color: var(--agm-primary-hover);
}

.agm-related-card:hover .agm-related-content i {
  transform: translate(2px, -2px);
}


/* =========================================================
   FAQ
   ========================================================= */

.agm-faq-section {
  background: var(--agm-bg-card);
}

.agm-accordion {
  width: 100%;
}

.agm-accordion .accordion-item {
  margin-bottom: 12px;

  background: var(--agm-bg-card);

  border: 1px solid var(--agm-border-color);
  border-radius: var(--agm-radius-sm) !important;

  overflow: hidden;
}

.agm-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.agm-accordion .accordion-button {
  display: flex;
  align-items: center;

  width: 100%;

  padding: 19px 22px;

  color: var(--agm-text-dark);
  background: var(--agm-bg-card);

  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;

  box-shadow: none;

  transition: var(--agm-transition);
}

.agm-accordion .accordion-button:not(.collapsed) {
  color: var(--agm-primary);
  background: var(--agm-primary-light);
}

.agm-accordion .accordion-button:focus {
  z-index: 1;

  box-shadow: none;

  outline: none;
}

.agm-accordion .accordion-button::after {
  flex-shrink: 0;
}

.agm-accordion .accordion-body {
  padding: 0 22px 22px;

  color: var(--agm-text-muted);

  font-size: 15px;
  line-height: 1.8;
}

.agm-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   LARGE TABLETS
   ========================================================= */

@media (max-width: 991.98px) {

  .agm-hero {
    padding: 70px 0 60px;
  }

  .agm-section {
    padding: 60px 0;
  }

  .agm-title {
    font-size: 40px;
  }

  .agm-content-card {
    padding: 35px;
  }

}


/* =========================================================
   TABLETS / MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

  .agm-hero {
    padding: 55px 0 50px;
  }

  .agm-title {
    font-size: 32px;
  }

  .agm-section {
    padding: 50px 0;
  }

  .agm-section-title {
    font-size: 25px;
  }

  .agm-content-card {
    padding: 28px 24px;
  }

  .agm-info-card {
    min-height: 100px;
    padding: 20px;
  }

  .agm-info-icon {
    flex-basis: 45px;
    width: 45px;
    height: 45px;

    margin-right: 15px;

    font-size: 18px;
  }

  .agm-note {
    padding: 20px;
  }

  .agm-letter-card {
    padding: 8px;
  }

  .agm-related-image img {
    height: 190px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

  .agm-hero {
    padding: 48px 15px 45px;
  }

  .agm-label {
    margin-bottom: 13px;

    padding: 6px 13px;

    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .agm-title {
    font-size: 28px;
  }

  .agm-section {
    padding: 42px 15px;
  }

  .agm-section-title {
    font-size: 23px;
  }

  .agm-content-card {
    padding: 24px 20px;
  }

  .agm-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .agm-info-card {
    padding: 18px;
  }

  .agm-info-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;

    margin-right: 13px;
  }

  .agm-info-value {
    font-size: 15px;
  }

  .agm-note {
    gap: 11px;
    padding: 17px;
  }

  .agm-letter-card {
    padding: 6px;
    border-radius: 10px;
  }

  .agm-related-image img {
    height: 180px;
  }

  .agm-related-content {
    min-height: 58px;
    padding: 15px 17px;
  }

  .agm-accordion .accordion-button {
    padding: 17px;
    font-size: 14px;
  }

  .agm-accordion .accordion-body {
    padding: 0 17px 18px;
    font-size: 14px;
  }

}
