@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 .tsz-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.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-reverse;
  gap: 30px;
}

.content-section-text-image-columns .list-item .image-col {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.content-section-text-image-columns .list-item .image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(174, 1, 0, 0.1);
  box-shadow: 0 8px 25px rgba(174, 1, 0, 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(174, 1, 0, 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: #ae0100;
  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: #ae0100;
}

.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(174, 1, 0, 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(174, 1, 0, 0.4));
}

.content-section-text-image-columns .item-text ul li:hover {
  color: #ae0100;
  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: #ae0100;
  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(174, 1, 0, 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: #ae0100;
  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: #ae0100;
  color: #ae0100;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(174, 1, 0, 0.3);
  border-color: #8b0000;
}

.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 .tsz-container {
    padding: 0 40px;
  }

  .content-section-text-image-columns .list-item {
    margin-bottom: 60px;
  }

  .content-section-text-image-columns .list-item-wrap {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    min-height: 400px;
  }

  .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 .tsz-container {
    padding: 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;
    min-height: 500px;
  }

  .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 .list-item-wrap {
    min-height: 600px;
  }

  .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 #ae0100;
  outline-offset: 2px;
}

/* Special styling for classes block */
.content-section-text-image-columns.classes-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.content-section-text-image-columns.classes-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ae0100" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.content-section-text-image-columns.classes-block .tsz-container {
  position: relative;
  z-index: 1;
}

.content-section-text-image-columns.classes-block .item-title {
  color: #ae0100;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.content-section-text-image-columns.classes-block .item-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ae0100;
  border-radius: 2px;
}

.content-section-text-image-columns.classes-block .item-sub-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ae0100;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.content-section-text-image-columns.classes-block .item-sub-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ae0100;
}

.content-section-text-image-columns.classes-block .list-item {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(174, 1, 0, 0.1);
  border: 2px solid rgba(174, 1, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.content-section-text-image-columns.classes-block .list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(174, 1, 0, 0.15);
  border-color: #ae0100;
}

.content-section-text-image-columns.classes-block .text-image-columns-btn {
  background: #ae0100;
  color: #ffffff;
  border: 2px solid #ae0100;
  font-size: 1.1rem;
  padding: 16px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.content-section-text-image-columns.classes-block .text-image-columns-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #8b0000;
  transition: left 0.3s ease;
  z-index: 1;
}

.content-section-text-image-columns.classes-block .text-image-columns-btn span {
  position: relative;
  z-index: 2;
}

.content-section-text-image-columns.classes-block .text-image-columns-btn:hover {
  background: #8b0000;
  border-color: #8b0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(174, 1, 0, 0.3);
}

.content-section-text-image-columns.classes-block .text-image-columns-btn:hover::before {
  left: 0;
}
