.detail-images article {
    height: 50rem;
    background-position: center center;
    background-size: cover;
    margin: 0 1.5rem;
    width: 90rem;
}


.detail-images {
    padding-top:0;
    padding-bottom: 0;
}

/* ============================================
   Breadcrumbs
   ============================================ */
.discover-breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
    color: #64748b;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
}

.discover-breadcrumbs a {
    color: #3367d6;
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discover-breadcrumbs a:hover {
    color: #2563eb;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #94a3b8;
    flex-shrink: 0;
}

.breadcrumb-current {
    color: #5f6368;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.main-text-section h2 {
    font-size: 3.2rem;
}

.main-text-section p, .main-text-section .location {
    color: var(--text-gray-color);
    margin-bottom: 2rem;
}

.main-text-section .location span {
    font-weight: 600;
}
.go-back-link {
    margin: 4rem 0;
}
.details {
    color: var(--primary-color);
}

/* Comments Section - Advisories Style */
.discover-comments-section {
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    border-top: 2px solid #e5e7eb;
}

/* Hyvor Talk Comments Container - Remove excessive padding */
.discover-comments-section .comments-section,
.discover-comments-section .comments-container,
.discover-comments-section #hyvor-talk-wrapper,
.discover-comments-section #hyvor-talk-container,
.discover-comments-section #hyvor-talk-view {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.discover-comments-section .comments-section::before {
    display: none;
}

/* Go Back Button - Advisories Style */
.discover-actions {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.btn-go-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
}

.btn-go-back:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 130, 206, 0.35);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .discover-breadcrumbs {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .discover-breadcrumbs a {
        max-width: 120px;
    }
    
    .breadcrumb-current {
        max-width: 150px;
    }
    
    .breadcrumb-separator {
        margin: 0 6px;
    }
    
    .discover-comments-section {
        margin-top: 16px;
        padding-top: 16px;
        padding-left: 0;
        padding-right: 0;
    }
    
    .discover-actions {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .btn-go-back {
        font-size: 1.3rem;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .discover-breadcrumbs {
        font-size: 11px;
    }
    
    .discover-breadcrumbs a {
        max-width: 80px;
    }
    
    .breadcrumb-current {
        max-width: 120px;
    }
    
    .breadcrumb-separator {
        margin: 0 4px;
        font-size: 10px;
    }
}