/* Layout */
.vga-visit-capitol-section {
  background: #03363d;
  color: var(--color-white);
  padding: 0;
}
.vga-visit-capitol-grid {
  display: flex;
  min-height: 420px;
  align-items: stretch;
}

/* Call to Action Section */
.vga-visit-capitol-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #03363d;
  width: 80%;
}
.vga-visit-capitol-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  text-align: left;
  width: 70%;
}
.vga-visit-capitol-desc {
  font-size: 1.1rem;
  margin-bottom: 1.3rem;
  width: 70%;
  text-align: left;
}

/* Button */
.vga-visit-capitol-btn-container {
  width: 70%;
  display: flex;
  justify-content: flex-start;
}
.vga-visit-capitol-btn-text {
  padding-left: 4px;
}
.vga-visit-capitol-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 40px;
  padding: 0.3em 0.8em;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 16px;
  align-self: center;
  box-sizing: border-box;
}
.vga-visit-capitol-btn-arrow {
  font-size: 1.5em;
  margin-left: 0.7em;
  transition: transform 0.2s;
}
.vga-visit-capitol-btn:hover, .vga-visit-capitol-btn:focus {
  background: var(--color-white);
  color: #196463;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.vga-visit-capitol-btn:hover .vga-visit-capitol-btn-arrow,
.vga-visit-capitol-btn:focus .vga-visit-capitol-btn-arrow {
  transform: translateX(6px);
}

/* Image */
.vga-visit-capitol-image-wrapper {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.vga-visit-capitol-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 1080px) {
  /* Layout */
  .vga-visit-capitol-grid {
    flex-direction: column;
  }
  .vga-visit-capitol-content {
    padding: 28px 8px 28px 8px;
    order: 2;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  /* Image */
  .vga-visit-capitol-image-wrapper {
    order: 1;
    min-height: 220px;
    max-height: 320px;
  }
  
  /* Call to Action Section */
  .vga-visit-capitol-title {
    font-size: 1.5rem;
    text-align: left;
    margin-left: 2rem;
  }
  .vga-visit-capitol-desc {
    font-size: 0.9rem;
    text-align: left;
    margin-left: 2rem;
    margin-bottom: 18px;
  }

  /* Button */
  .vga-visit-capitol-btn {
    font-size: 0.9rem;
    padding: 0.25em 0.6em;
    align-self: flex-start;
    margin-left: 2rem;
    margin-top: 8px;
  }
} 
