/**
 * Greater Zion Blog Template Styles
 * Add to theme CSS or enqueue separately
 */

/* ========================================
   1. Hero Section
   ======================================== */
.gz-hero-section {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    margin-top: -80px; /* Offset header */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gz-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

/* ========================================
   2. Progress Bar
   ======================================== */
.gz-progress-bar-wrapper {
    position: sticky;
    top: 80px;
    background: #fff;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gz-progress-bar {
    height: 4px;
    background: #f8f8f8;
    position: relative;
}

.gz-progress-fill {
    height: 100%;
    background: #EB6B40;
    width: 0%;
    transition: width 0.3s ease;
}

.gz-progress-text {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 14px;
}

.gz-reading-section {
    color: #364b54;
    font-weight: 500;
}

.gz-reading-percentage {
    color: #7B7C7F;
}

/* ========================================
   3. Title Card
   ======================================== */
.gz-title-card {
    background: #fff;
    max-width: 900px;
    margin: -100px auto 50px;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.gz-meta-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.gz-category {
    color: #EB6B40;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gz-separator {
    margin: 0 10px;
    color: #D5D2D2;
}

.gz-read-time {
    color: #7B7C7F;
}

.gz-post-title {
    font-size: 42px;
    line-height: 1.2;
    color: #364b54;
    margin-bottom: 15px;
    font-weight: bold;
}

.gz-post-excerpt {
    font-size: 18px;
    color: #7B7C7F;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gz-author-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.gz-author-info {
    display: flex;
    align-items: center;
}

.gz-author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.gz-author-text {
    display: flex;
    flex-direction: column;
}

.gz-author-name {
    font-weight: 600;
    color: #364b54;
}

.gz-post-date {
    font-size: 14px;
    color: #7B7C7F;
}

.gz-share-buttons {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1000;
}

.gz-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f8f8;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.gz-btn-icon {
    font-size: 16px;
    line-height: 1;
}

.gz-share-btn:hover {
    background: #EB6B40;
    color: white;
}

/* ========================================
   4. Content Layout
   ======================================== */
.gz-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gz-content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    margin-bottom: 60px;
}

/* ========================================
   5. Main Content
   ======================================== */
.gz-main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Quick Facts */
.gz-quick-facts {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.gz-quick-facts h3 {
    margin: 0 0 20px 0;
    color: #364b54;
    font-size: 20px;
}

.gz-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gz-fact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gz-fact-icon {
    font-size: 20px;
}

.gz-fact-text {
    color: #364b54;
    font-size: 14px;
}

/* Itinerary Section */
.gz-itinerary-section {
    margin: 40px auto;
    max-width: 100%;
    width: 100%;
}

.gz-itinerary-toggle {
    width: 100%;
    background: #364b54;
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.gz-itinerary-toggle:hover {
    background: #2a3d44;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 75, 84, 0.3);
}

.gz-toggle-icon {
    font-size: 20px;
    margin-right: 10px;
}

.gz-toggle-arrow {
    transition: transform 0.3s ease;
}

.gz-itinerary-toggle.active .gz-toggle-arrow {
    transform: rotate(180deg);
}

.gz-itinerary-content {
    display: none;
    margin-top: 20px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 2px solid #D5D2D2;
    max-width: 100%;
    width: 100%;
}

.gz-itinerary-content.show {
    display: block;
}

.gz-day-title {
    margin-bottom: 30px;
    text-align: center;
}

.gz-day-title h3 {
    color: #364b54;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    border: 2px solid #EB6B40;
    display: inline-block;
}

.gz-timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.gz-time-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.gz-time-display .gz-time,
.gz-time-display .gz-day {
    background: #EB6B40;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin: 0;
}

.gz-time-display .gz-day {
    background: #364b54;
}

.gz-timeline-content {
    padding-bottom: 30px;
    border-bottom: 1px solid #D5D2D2;
}

.gz-timeline-item:last-child .gz-timeline-content {
    border-bottom: none;
}

.gz-activity-type {
    background: rgba(54, 75, 84, 0.1);
    color: #364b54;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.gz-timeline-content h4 {
    margin: 0 0 10px 0;
    color: #364b54;
    font-size: 20px;
}

.gz-timeline-content .gz-description {
    color: #7B7C7F;
    margin: 0 0 15px 0;
    text-align: left;
}

.gz-timeline-content .gz-description p {
    margin-bottom: 10px;
}

.gz-timeline-content .gz-description p:last-child {
    margin-bottom: 0;
}

/* List alignment fix for descriptions */
.gz-timeline-content .gz-description ul,
.gz-timeline-content .gz-description ol {
    text-align: left !important;
    margin-left: 20px !important;
    padding-left: 0 !important;
}

.gz-timeline-content .gz-description li {
    text-align: left !important;
    margin-bottom: 8px !important;
}

/* Ensure all description content is left-aligned */
.gz-timeline-content .gz-description * {
    text-align: left !important;
}

.gz-suggested-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    padding: 8px 12px;
    background: rgba(160, 186, 191, 0.1);
    border-left: 3px solid #a0babf;
    border-radius: 4px;
}

.gz-suggested-time .gz-btn-icon {
    font-size: 16px;
    color: #a0babf;
}

.gz-suggested-time-text {
    color: #364b54;
    font-size: 14px;
    font-weight: 500;
}

.gz-fee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    padding: 8px 12px;
    background: rgba(235, 107, 64, 0.1);
    border-left: 3px solid #EB6B40;
    border-radius: 4px;
}

.gz-fee .gz-btn-icon {
    font-size: 16px;
    color: #EB6B40;
}

.gz-fee-text {
    color: #364b54;
    font-size: 14px;
    font-weight: 500;
}

.gz-subsequent-item h4 {
    font-weight: 700 !important;
}

.gz-subsequent-item .gz-activity-type {
    font-weight: 600;
}

.gz-location-info {
    margin-top: 15px;
}

.gz-location-item {
    color: #EB6B40;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.gz-location-item:last-child {
    margin-bottom: 0;
}

.gz-location-item .gz-btn-icon {
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 14px;
}

.gz-location-name {
    font-weight: 500;
}

.gz-location-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.gz-location-link:hover {
    color: #364b54;
    text-decoration: underline;
}

.gz-location-address {
    color: #7B7C7F;
    font-size: 12px;
    margin-left: 5px;
}

.gz-timeline-image {
    margin: 15px 0;
}

.gz-timeline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gz-timeline-link {
    margin-top: 15px;
}

.gz-btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Conditional spacing - only add margin if element exists */
.gz-timeline-content h4 + .gz-suggested-time,
.gz-timeline-content h4 + .gz-fee {
    margin-top: 10px;
}

.gz-timeline-content .gz-suggested-time + .gz-fee,
.gz-timeline-content .gz-suggested-time + .gz-description,
.gz-timeline-content .gz-suggested-time + .gz-timeline-image,
.gz-timeline-content .gz-suggested-time + .gz-location-info,
.gz-timeline-content .gz-suggested-time + .gz-timeline-link {
    margin-top: 15px;
}

.gz-timeline-content .gz-fee + .gz-description,
.gz-timeline-content .gz-fee + .gz-timeline-image,
.gz-timeline-content .gz-fee + .gz-location-info,
.gz-timeline-content .gz-fee + .gz-timeline-link {
    margin-top: 15px;
}

.gz-timeline-content .gz-description + .gz-timeline-image,
.gz-timeline-content .gz-description + .gz-location-info,
.gz-timeline-content .gz-description + .gz-timeline-link {
    margin-top: 15px;
}

.gz-timeline-content .gz-timeline-image + .gz-location-info,
.gz-timeline-content .gz-timeline-image + .gz-timeline-link {
    margin-top: 15px;
}

.gz-timeline-content .gz-location-info + .gz-timeline-link {
    margin-top: 15px;
}

/* Day Section Styling */
.gz-day-section {
    margin-bottom: 50px;
    position: relative;
    padding-top: 20px;
}

.gz-day-section:not(:first-child) {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 3px solid #EB6B40;
    border-radius: 2px;
}

/* Removed gradient lines as requested */

.gz-day-section .gz-day-title {
    background: #EB6B40;
    color: #000000;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(235, 107, 64, 0.3);
    border: none;
    display: inline-block;
}

/* Calendar icon removed as requested */

.gz-day-section .gz-day-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    color: #000000;
}

/* Additional day separation styling */
.gz-day-section + .gz-day-section {
    margin-top: 80px !important;
    padding-top: 60px !important;
    position: relative;
}

/* Removed gradient lines as requested */

/* Ensure day separators are visible */
.gz-day-section:not(:last-child) {
    position: relative;
    margin-bottom: 60px;
}

/* Add a subtle background to each day section */
.gz-day-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
}

/* Day title styling to match Morning/Afternoon boxes */
.gz-day-section .gz-day-title {
    text-align: left;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

/* Removed gradient line as requested */

.gz-itinerary-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Post Content */
.gz-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #364b54;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: Georgia, serif;
}

.gz-post-content p {
    margin-bottom: 25px;
}

.gz-post-content h2, 
.gz-post-content h3, 
.gz-post-content h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #364b54;
}

.gz-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.gz-post-content blockquote {
    border-left: 5px solid #EB6B40;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 24px;
    color: #364b54;
}

/* Post Tags */
.gz-post-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gz-tag {
    background: #f8f8f8;
    color: #364b54;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gz-tag:hover {
    background: #EB6B40;
    color: white;
}

/* ========================================
   6. Sidebar
   ======================================== */
.gz-blog-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.gz-sidebar-widget {
    background: white;
    border: 1px solid #D5D2D2;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.gz-sidebar-widget h3 {
    margin: 0 0 20px 0;
    color: #364b54;
    font-size: 20px;
}

.gz-related-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f8f8f8;
    display: flex;
    gap: 15px;
}

.gz-related-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gz-related-image {
    flex: 0 0 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
}

.gz-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gz-related-image:hover img {
    transform: scale(1.05);
}

.gz-related-content {
    flex: 1;
}

.gz-related-item h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.3;
}

.gz-related-item h4 a {
    color: #364b54;
    text-decoration: none;
}

.gz-related-item h4 a:hover {
    color: #EB6B40;
}

.gz-related-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #7B7C7F;
}

.gz-meta-item {
    background: rgba(54, 75, 84, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: #364b54;
}

.gz-related-excerpt {
    color: #7B7C7F;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.gz-read-more {
    color: #EB6B40;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.gz-read-more:hover {
    text-decoration: underline;
}

/* Newsletter */
.gz-newsletter p {
    color: #7B7C7F;
    margin-bottom: 20px;
}

.gz-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gz-newsletter-form input {
    padding: 12px 20px;
    border: 1px solid #D5D2D2;
    border-radius: 25px;
    font-size: 14px;
}

/* ========================================
   7. Buttons
   ======================================== */
.gz-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.gz-btn-primary {
    background: #EB6B40;
    color: white;
}

.gz-btn-primary:hover {
    background: #d15b35;
    transform: translateY(-2px);
}

.gz-btn-secondary {
    background: white;
    color: #364b54;
    border: 2px solid #D5D2D2;
}

.gz-btn-secondary:hover {
    border-color: #364b54;
}

.gz-btn-hero {
    background: #EB6B40;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
}

/* ========================================
   8. Bottom CTA
   ======================================== */
.gz-bottom-cta {
    background: #364b54;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.gz-cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.gz-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   9. Mobile Responsive
   ======================================== */
@media (max-width: 768px) {
    .gz-hero-section {
        height: 400px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .gz-title-card {
        margin: -50px 15px 30px;
        padding: 25px 20px;
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
    }
    
    .gz-post-title {
        font-size: 28px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .gz-content-wrapper {
        padding: 0 15px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .gz-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .gz-blog-sidebar {
        position: static;
    }
    
    .gz-main-content {
        max-width: 100%;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .gz-facts-grid {
        grid-template-columns: 1fr;
    }
    
    /* Improve mobile content spacing */
    .gz-main-content p,
    .gz-main-content h1,
    .gz-main-content h2,
    .gz-main-content h3,
    .gz-main-content h4,
    .gz-main-content h5,
    .gz-main-content h6 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Ensure content blocks don't have excessive margins */
    .wp-block-group,
    .wp-block-columns,
    .wp-block-column {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Mobile post content fixes */
    .gz-post-content {
        font-size: 16px;
        line-height: 1.6;
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .gz-post-content p {
        margin-bottom: 20px;
        text-align: left;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .gz-post-content h2,
    .gz-post-content h3,
    .gz-post-content h4 {
        font-size: 20px;
        line-height: 1.3;
        margin-top: 30px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .gz-timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gz-time-display {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .gz-time-display .gz-time,
    .gz-time-display .gz-day {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .gz-timeline-marker {
        text-align: left;
        margin-bottom: 15px;
    }
    
    /* Mobile itinerary section fixes */
    .gz-itinerary-section {
        margin: 20px 0;
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .gz-itinerary-content {
        padding: 20px 15px;
        margin: 10px 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .gz-timeline-content {
        padding: 15px 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .gz-timeline-content h4 {
        font-size: 18px;
        line-height: 1.3;
        word-wrap: break-word;
        margin-bottom: 10px;
    }
    
    .gz-timeline-content .gz-description {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .gz-timeline-content .gz-description p {
        margin-bottom: 12px;
        text-align: left;
    }
    
    .gz-timeline-content .gz-description p:last-child {
        margin-bottom: 0;
    }
    
    /* List alignment fix for descriptions - mobile */
    .gz-timeline-content .gz-description ul,
    .gz-timeline-content .gz-description ol {
        text-align: left !important;
        margin-left: 20px !important;
        padding-left: 0 !important;
    }
    
    .gz-timeline-content .gz-description li {
        text-align: left !important;
        margin-bottom: 8px !important;
    }
    
    /* Ensure all description content is left-aligned - mobile */
    .gz-timeline-content .gz-description * {
        text-align: left !important;
    }
    
    .gz-related-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .gz-related-image {
        flex: 0 0 auto;
        width: 100%;
        height: 120px;
    }
    
    /* Sticky Mobile Share */
    .gz-sticky-share {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        padding: 10px;
        border-radius: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        gap: 10px;
        z-index: 9999;
    }
}

/* Hide sticky share on desktop */
@media (min-width: 769px) {
    .gz-sticky-share {
        display: none;
    }
}

/* Notification Styles */
.gz-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #364b54;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.gz-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.gz-share-btn.saved {
    background: #EB6B40;
    color: white;
}

/* Ensure share buttons are always visible */
.gz-share-btn:hover {
    background: #EB6B40;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(235, 107, 64, 0.3);
}

/* Additional z-index fixes for common block elements */
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.stk-block-columns,
.stk-block-column {
    position: relative;
    z-index: 1;
}

/* Ensure share buttons stay above all content */
.gz-title-card {
    position: relative;
    z-index: 10;
}

/* Multiple Days Styling */
.gz-day-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.gz-day-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.gz-day-title h3 {
    color: #364b54;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EB6B40;
    display: inline-block;
} 