.atl-gcp {
  padding: 6rem 1.5rem;
  background: #fff;
}
@media (min-width: 768px) {
  .atl-gcp {
    padding: 6rem 2rem;
  }
}

.atl-gcp__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.atl-gcp__header {
  text-align: center;
  margin-bottom: 4rem;
}

.atl-gcp__title {
  color: #137777;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1111;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .atl-gcp__title {
    font-size: 3rem;
    line-height: 1;
  }
}

.atl-gcp + .atl-indp-cta-section {
  margin-top: -5rem;
  padding: 0 2rem 4rem;
  border-top: 0;
}
.atl-gcp + .atl-indp-cta-section .atl-indp-cta {
  max-width: 64rem;
  padding: 3rem;
  border-radius: 1.75rem;
  gap: 1.5rem;
}
.atl-gcp + .atl-indp-cta-section .atl-indp-cta__title {
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 800;
}
.atl-gcp + .atl-indp-cta-section .atl-indp-cta__desc {
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .atl-gcp + .atl-indp-cta-section {
    margin-top: -2rem;
    padding: 0 1.5rem 4rem;
  }
  .atl-gcp + .atl-indp-cta-section .atl-indp-cta {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }
  .atl-gcp + .atl-indp-cta-section .atl-indp-cta__title {
    font-size: 1.5rem;
  }
}
.atl-gcp__subtitle {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(53, 52, 82, 0.75);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
}

.atl-gcp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .atl-gcp__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.atl-gcp__tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.atl-gcp__tab {
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(53, 52, 82, 0.85);
  transition: background-color 0.7s ease, color 0.7s ease;
  user-select: none;
}
@media (min-width: 768px) {
  .atl-gcp__tab {
    padding: 2rem;
  }
}
.atl-gcp__tab:hover:not(.is-active) {
  background: rgba(0, 0, 0, 0.07);
}
.atl-gcp__tab.is-active {
  background: #137777;
  color: #fff;
}

.atl-gcp__tab-title {
  font-size: 1.5rem;
  line-height: 1.3333;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  transition: color 0.7s ease;
}
@media (min-width: 768px) {
  .atl-gcp__tab-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

.atl-gcp__tab-desc {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.7s ease, opacity 0.7s ease, margin-top 0.7s ease;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .atl-gcp__tab-desc {
    font-size: 1.25rem;
    line-height: 1.625;
  }
}
.atl-gcp__tab-desc p {
  margin: 0;
}
.atl-gcp__tab-desc strong {
  font-weight: 700;
}
.atl-gcp__tab.is-active .atl-gcp__tab-desc {
  max-height: 320px;
  opacity: 1;
  margin-top: 0.75rem;
}
.atl-gcp__tab.is-active .atl-gcp__tab-desc strong {
  color: #fff;
}
.atl-gcp__tab:not(.is-active) .atl-gcp__tab-desc strong {
  color: #137777;
}

.atl-gcp__panels {
  position: relative;
  min-height: 320px;
}
@media (min-width: 1024px) {
  .atl-gcp__panels {
    min-height: 450px;
  }
}

.atl-gcp__panel {
  display: none;
  height: 100%;
}
.atl-gcp__panel.is-active {
  display: block;
  animation: atl-gcp-fade-in 0.4s ease;
}

@keyframes atl-gcp-fade-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.atl-gcp__image {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  background: rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
  .atl-gcp__image {
    height: 450px;
  }
}
.atl-gcp__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.atl-gcp__image:hover img {
  transform: scale(1.03);
}

.atl-gcp__subsidiaries {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.atl-gcp__sub {
  flex: 1;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.atl-gcp__sub[href]:hover {
  border-color: #137777;
  transform: translateY(-2px);
}

.atl-gcp__sub-logo {
  display: flex;
  align-items: center;
  max-width: 60%;
  height: 100%;
}
.atl-gcp__sub-logo img {
  max-height: 32px;
  max-width: 100%;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .atl-gcp__sub-logo img {
    max-height: 48px;
  }
}

.atl-gcp__sub-name {
  max-width: 60%;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-jakarta);
}
@media (min-width: 640px) {
  .atl-gcp__sub-name {
    font-size: 1rem;
  }
}

.atl-gcp__sub-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.atl-gcp__sub-country {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(53, 52, 82, 0.8);
}

.atl-gcp__sub-flag {
  font-size: 1rem;
}
