@charset "UTF-8";
/* Header */
/* Menu */
/* Editor Blocks */
/* Forms */
/* Other */
.content-section-text-image-columns {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Background Graphic */
.text-image-columns-bg-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}

.text-image-columns-bg-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-section-text-image-columns .etsmp-container {
  position: relative;
  z-index: 1;
}

.content-section-text-image-columns .list-item {
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.content-section-text-image-columns .list-item:last-child {
  margin-bottom: 0;
}

.content-section-text-image-columns .list-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-section-text-image-columns .list-item .image-col {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.content-section-text-image-columns .list-item .image-col img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(0, 47, 93, 0.1);
  box-shadow: 0 8px 25px rgba(0, 47, 93, 0.15);
}

.content-section-text-image-columns .list-item .image-col:hover img {
  transform: scale(1.05);
}

.content-section-text-image-columns .list-item .image-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 47, 93, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.content-section-text-image-columns .list-item .image-col:hover::before {
  opacity: 1;
}

.content-section-text-image-columns .list-item .content-col {
  width: 100%;
}

.content-section-text-image-columns .list-item .item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-section-text-image-columns .item-title {
  margin-bottom: 16px;
}

.content-section-text-image-columns .item-sub-title {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.4;
  color: #002f5d;
  font-weight: 600;
  position: relative;
}

.content-section-text-image-columns .item-sub-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: #fbcc6c;
}

.content-section-text-image-columns .item-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--color-text);
}

.content-section-text-image-columns .item-text ul {
  margin: 0;
  padding: 0;
}

.content-section-text-image-columns .item-text ul li {
  margin: 0 0 24px 0;
  list-style: none;
  padding: 0 0 0 35px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.content-section-text-image-columns .item-text ul li:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 2px;
  z-index: 2;
  background-image: url('../../../assets/images/arrow_up_right_icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(45deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 47, 93, 0.2));
}

/* Staggered animation delays for list items */
.content-section-text-image-columns .item-text ul li:nth-child(1) { animation-delay: 0.1s; }
.content-section-text-image-columns .item-text ul li:nth-child(2) { animation-delay: 0.2s; }
.content-section-text-image-columns .item-text ul li:nth-child(3) { animation-delay: 0.3s; }
.content-section-text-image-columns .item-text ul li:nth-child(4) { animation-delay: 0.4s; }
.content-section-text-image-columns .item-text ul li:nth-child(5) { animation-delay: 0.5s; }
.content-section-text-image-columns .item-text ul li:nth-child(6) { animation-delay: 0.6s; }

/* Hover effects for list items */
.content-section-text-image-columns .item-text ul li:hover:before {
  transform: scale(1.2) rotate(45deg);
  filter: drop-shadow(0 4px 8px rgba(0, 47, 93, 0.4));
}

.content-section-text-image-columns .item-text ul li:hover {
  color: #002f5d;
  transition: color 0.3s ease;
}

.content-section-text-image-columns .item-text ul li h1,
.content-section-text-image-columns .item-text ul li h2,
.content-section-text-image-columns .item-text ul li h3,
.content-section-text-image-columns .item-text ul li h4,
.content-section-text-image-columns .item-text ul li h5,
.content-section-text-image-columns .item-text ul li h6 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-image-columns-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: #002f5d;
  color: #fff;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 47, 93, 0.2);
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-image-columns-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fbcc6c;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.text-image-columns-btn span {
  position: relative;
  z-index: 2;
}

.text-image-columns-btn:hover,
.text-image-columns-btn:focus {
  background: #002f5d;
  color: #002f5d;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 47, 93, 0.3);
  border-color: #fbcc6c;
}

.text-image-columns-btn:hover::before {
  left: 0;
}

@media only screen and (min-width: 768px) {
  .content-section-text-image-columns {
    padding: 80px 0;
  }

  .content-section-text-image-columns .list-item {
    margin-bottom: 60px;
  }

  .content-section-text-image-columns .list-item-wrap {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .content-section-text-image-columns .list-item .image-col,
  .content-section-text-image-columns .list-item .content-col {
    width: 50%;
  }

  .content-section-text-image-columns .list-item-even .list-item-wrap {
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1024px) {
  .content-section-text-image-columns {
    padding: 100px 0;
  }

  .content-section-text-image-columns .list-item {
    margin-bottom: 80px;
  }

  .content-section-text-image-columns .list-item:last-child {
    margin-bottom: 0;
  }

  .content-section-text-image-columns .list-item-wrap {
    gap: 60px;
  }

  .content-section-text-image-columns .item-text {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media only screen and (min-width: 1280px) {
  .content-section-text-image-columns {
    padding: 120px 0;
  }

  .content-section-text-image-columns .item-text ul li:before {
    top: 3px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .content-section-text-image-columns .item-text ul li,
  .content-section-text-image-columns .item-text ul li:before,
  .content-section-text-image-columns .list-item .image-col img,
  .text-image-columns-btn {
    transition: none;
    animation: none;
  }
  
  .content-section-text-image-columns .item-text ul li {
    opacity: 1;
    transform: none;
  }
  
  .content-section-text-image-columns .item-text ul li:before {
    transform: rotate(45deg);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .content-section-text-image-columns .item-text ul li:before {
    filter: none;
    background-color: #000;
    background-image: none;
  }
  
  .text-image-columns-btn {
    border-color: #000;
  }
}

/* Focus states for accessibility */
.text-image-columns-btn:focus {
  outline: 3px solid #fbcc6c;
  outline-offset: 2px;
}
