/* ==========================================================================
   Paratourco: Single Tour Layout (Custom Classes)
   ========================================================================== */

/* Header & Intro */
.ptc-tour-header-wrap {
    text-align: center;
    padding: 40px 20px;
    background-color: #000;
    color: #fff;
}
.ptc-tour-main-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.ptc-tour-intro-copy {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Blockquotes & Investigators */
/* Phase 1 Layout Alignment: Strip background/padding from outer wrappers to prevent double-boxing */
.ptc-quote,
.ptc-lead-quote {
background: none !important;
    border: none;
    max-width: 800px;
    margin: 0 auto 1.5em auto;
    padding: 0 !important;
}

/* Target inner p tags for legacy parity and "Boxy" look */
.ptc-quote p,
.ptc-lead-quote p {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 28px;
    text-align: center;
    border-radius: 4px;
    margin: 0;
    line-height: 1.6;
}

.ptc-quote .ptc-star-rating {
    margin-top: 15px;
    letter-spacing: 2px;
}

.ptc-lead-quote {
    border-top: 1px solid #333;
    padding-bottom: 60px;
}

.ptc-lead-headshot img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #d32f2f;
    object-fit: cover;
    margin-bottom: 20px;
}
.ptc-experts {
    color: #ffffff;
    margin-bottom: 15px;
}
.ptc-experts .ptc-lead-title {
    display: block;
    font-size: 0.9rem;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ptc-experts strong {
    font-size: 1.6rem;
}
.ptc-experts .ptc-lead-specialty {
    font-family: monospace;
    opacity: 0.8;
}
.ptc-lead-bio {
    color: #cccccc;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grid & Locations */

.ptc-section-header {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}
.ptc-location-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ptc-location-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}
.ptc-location-card {
    text-align: center;
}
.ptc-location-hero-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}
.ptc-location-title-wrap {
    margin-bottom: 10px;
}

/* Specific styling for the JS hook per your request */
.dossier-trigger {
    cursor: pointer;
    text-decoration: underline;
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}
.dossier-trigger:hover {
    color: #ff4c4c;
}
.ptc-location-lore {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* Utilities & Buttons */
.ptc-meal-inclusion-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 20px;
}
.ptc-action-row {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.ptc-book-btn {
    background-color: #dc143c;
    color: #ffffff !important;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
}
.ptc-book-btn:hover {
    background-color: #ff1a4a;
}
.ptc-separator {
    opacity: 0.2;
    margin: 0 auto 50px auto;
    width: 60%;
    border: 0;
    border-top: 1px solid #ffffff;
}
.ptc-book-btn {
    background-color: #dc143c;
    color: #ffffff !important;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 9999px;
    display: inline-block;
    transition: background-color 0.2s ease;
}
/* Unified Briefing Container */
.ptc-unified-briefing {
    max-width: 800px;
    margin: 0 auto 40px auto;
    background-color: #1a1a1a;
    padding: 30px 40px;
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    border-left: 5px solid rgba(0,0,0,0.05);
}

/*  Testimonial Text Styles */
.ptc-testimonial {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Briefing Section Divider */
.ptc-briefing-divider {
    border: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 25px auto;
    width: 60%;
}

/* Cleanup: Remove Obsolete Rules */
.ptc-quote, 
.ptc-quote p, 
.ptc-lead-quote {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .ptc-location-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .ptc-location-row {
        grid-template-columns: 1fr;
    }
}