/** 
* Additional CSS from the Appearance -> Additional CSS field on staging. 
* JGD: I don't know where I want this to live and I don't want it to get lost, so I'm putting it in this file for now. 4/21/26
*/
.travel-block {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 980px;
  margin: 24px 0;
  background: #f3f3f3;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

.travel-block-label {
  width: 155px;
  min-width: 155px;
  background: var(--redpoint-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 24px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.travel-block-content {
  display: flex;
  flex: 1;
  padding: 18px 22px;
  background: #f3f3f3;
}

.travel-info-item {
  display: flex;
  flex: 1;
  padding: 0 22px;
  border-right: 1px solid #8f8f8f;
  min-width: 0;
}

.travel-info-item:last-child {
  border-right: none;
  padding-right: 8px;
}

.travel-info-item:first-child {
  padding-left: 0;
}

.travel-info-icon {
    flex: 0 0 46px;
    width: 46px;
    margin: 15px 15px 0 0;
}

.travel-info-icon img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.travel-info-text {
  min-width: 0;
}

.travel-info-eyebrow {
  color: #d90429;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.travel-info-title {
  display: inline-block;
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.travel-info-description {
  color: #555555;
  font-size: 14px;
  line-height: 1.25;
}

.travel-block-content p {
    margin-bottom: 3px;
}

.travel-block-button-group {
	display: flex;
	flex: 1;
	align-items: center;
}

.travel-block-button {
	flex: 1;
	text-align: center;
	margin: 2rem 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .travel-block {
    flex-direction: column;
    border-radius: 18px;
  }

  .travel-block-label {
    width: 100%;
    min-width: 100%;
  }

  .travel-block-content, .travel-block-button-group {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
  }

  .travel-info-item {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid #8f8f8f;
  }

  .travel-info-item:last-child {
    border-bottom: none;
  }
}

.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 10px;
}
 
.faq-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 28px;
  color: #2c2926;
}
 
.faq-item {
  border-top: 1px solid #6d6a67;
}
 
.faq-item:last-child {
  border-bottom: 1px solid #6d6a67;
}
 
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  cursor: pointer;
  text-align: left;
}
 
.faq-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: #c8102e;
  position: relative;
  margin-top: 4px;
}
 
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
}
 
.faq-icon::before {
  width: 8px;
  height: 2px;
  top: 7px;
  left: 4px;
}
 
.faq-icon::after {
  width: 2px;
  height: 8px;
  top: 4px;
  left: 7px;
}
 
.faq-question-text {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #1f1f1f;
}
 
.faq-answer {
  display: none;
  margin: -4px 0 16px 38px;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.45;
  color: #3d3d3d;
}
 
.faq-item.active .faq-answer {
  display: block;
}
 
.faq-item.active .faq-icon {
  background: #4a4744;
}
 
.faq-item.active .faq-icon::after {
  display: none;
}
 
@media (max-width: 768px) {
  .faq-heading {
    font-size: 30px;
  }
 
  .faq-question {
    gap: 14px;
    padding: 14px 0;
  }
 
  .faq-question-text {
    font-size: 17px;
  }
 
  .faq-answer {
    margin-left: 30px;
    font-size: 15px;
  }
}

.rp-emergency-wrap{
  display:flex;
  align-items:center;
  width:100%;
  max-width:980px;
  margin:24px auto;
  background:#f2f2f2;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.rp-emergency-label{
  width:155px;
  min-width:155px;
  background:#d90429;
  color:#fff;
  padding:32px 18px;
  font-size:16px;
  font-weight:700;
  line-height:1.35;
  display:flex;
  align-items:center;
  box-sizing:border-box;
}

.rp-emergency-content{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  padding:28px 24px;
  flex-wrap:wrap;
  box-sizing:border-box;
}

.rp-emergency-btn{
  display:inline-block;
  background:#d90429;
  color:#ffffff !important;
  text-decoration:none !important;
  padding:14px 34px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  line-height:1.2;
  min-width:210px;
  text-align:center;
  box-sizing:border-box;
}

.rp-emergency-btn:hover{
  background:#b50323;
  color:#ffffff !important;
  text-decoration:none !important;
}

.rp-emergency-label { 
  border: 5px solid blue !important; 
}

@media (max-width:768px){
  .rp-emergency-wrap{
    flex-direction:column;
    align-items:stretch;
  }

  .rp-emergency-label{
    width:100%;
    min-width:100%;
  }

  .rp-emergency-content{
    flex-direction:column;
    padding:20px;
  }

  .rp-emergency-btn{
    width:100%;
    min-width:0;
  }
}
