/* Container */
.stay-updated {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 400px;
}

/* Image */
.stay-updated-image {
  width: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Content */
.stay-updated-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background-color: var(--color-white);
}

/* Title */
.stay-updated-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

/* Text */
.stay-updated-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-medium-gray);
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

/* Subscribe Button */
.stay-updated-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.125rem;
  border: 1px solid var(--color-light-green);
  position: relative;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.stay-updated-button::before {
  content: '';
  position: absolute;
  bottom: -10px;
  height: 10px;
  width: 100%;
  left: 4px;
  transform: skewX(45deg);
  background-color: var(--color-light-green);
  transition: all 0.2s ease;
}

.stay-updated-button::after {
  content: '';
  position: absolute;
  right: -10px;
  height: 105%;
  width: 10px;
  bottom: -6px;
  transform: skewY(45deg);
  background-color: var(--color-light-green);
  transition: all 0.2s ease;
}

.stay-updated-button:hover {
  transform: translate(4px, 4px);
}

.stay-updated-button:hover::before {
  bottom: -4px;
  height: 4px;
  left: 1px;
}

.stay-updated-button:hover::after {
  right: -4px;
  width: 4px;
  bottom: -3px;
  height: 104%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .stay-updated {
    flex-direction: column;
  }
  
  .stay-updated-image {
    width: 100%;
    height: 250px;
  }
  
  .stay-updated-content {
    width: 100%;
    padding: 2rem;
  }
  
  .stay-updated-title {
    font-size: 1.75rem;
  }
  
  .stay-updated-text {
    font-size: 1rem;
  }
}
