/* Library CTA Styles */

.c-library-cta {
  background: #00284d;
  width: 100%;
  padding: 56px 0;
  box-sizing: border-box;
  overflow: hidden;
  font-family: var(--font-family, sans-serif);
}

.c-library-cta__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  gap: 64px;
}

/* ---- Info Column (Left) ---- */
.c-library-cta__info {
  flex: 1 1 50%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.c-library-cta__title {
  font-size: 30px;
  font-weight: 700;
  color: #00a8ff;
  margin: 0 0 20px;
  line-height: 1.3;
}

.c-library-cta__text {
  font-size: 14.5px;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0 0 32px;
  font-weight: 400;
}

.c-library-cta__action {
  display: flex;
}

.c-library-cta__btn {
  display: inline-block;
  background: #f1f5f9;
  color: #00284d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 26px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.c-library-cta__btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ---- Visual Column (Right) ---- */
.c-library-cta__visual {
  flex: 1 1 45%;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-library-cta__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 900px) {
  .c-library-cta {
    padding: 48px 0;
  }
  .c-library-cta__container {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
    text-align: center;
  }
  .c-library-cta__info {
    flex: 1 1 100%;
    max-width: 100%;
    align-items: center;
  }
  .c-library-cta__action {
    justify-content: center;
  }
  .c-library-cta__visual {
    flex: 1 1 100%;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .c-library-cta__title {
    font-size: 24px;
  }
}
