/**
 * Modern Detail Pages (Project & Blog) - Professional & Mobile Responsive
 */

/* Page Container */
.detail-page-modern {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 60px;
    overflow: hidden;
}

.detail-page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.detail-page-bg .bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: floatOrb 25s infinite ease-in-out;
}

.detail-page-bg .bg-orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -300px;
    left: -300px;
}

.detail-page-bg .bg-orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -250px;
    right: -250px;
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Hero Section - Clean & Professional */
.detail-hero-modern {
    position: relative;
    z-index: 1;
    margin-top: 3.5rem;
    margin-bottom: 3rem;
}

.detail-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.category-badge-detail {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.detail-title-modern {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.detail-excerpt-modern {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Meta Info - Compact & Professional */
.meta-info-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

.meta-item-detail i {
    font-size: 1rem;
    color: #667eea;
    opacity: 0.8;
}

.meta-item-detail span {
    color: rgba(255, 255, 255, 0.8);
}

/* Featured Image */
.featured-image-detail {
    position: relative;
    z-index: 1;
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.featured-image-detail img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Content Section */
.content-section-detail {
    position: relative;
    z-index: 1;
    margin: 3rem 0;
}

.content-wrapper-detail {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-text-detail {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 1.0625rem;
    font-weight: 400;
}

.content-text-detail p {
    margin-bottom: 1.5rem;
}

.content-text-detail h2,
.content-text-detail h3,
.content-text-detail h4 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.content-text-detail h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 0.5rem;
}

.content-text-detail h3 {
    font-size: 1.5rem;
}

.content-text-detail h4 {
    font-size: 1.25rem;
}

.content-text-detail ul,
.content-text-detail ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-text-detail li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.content-text-detail a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.content-text-detail a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.content-text-detail blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.content-text-detail table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.content-text-detail table th,
.content-text-detail table td {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.content-text-detail table th {
    background: rgba(102, 126, 234, 0.2);
    color: #ffffff;
    font-weight: 600;
}

/* Tags Section */
.tags-section-detail {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-section-detail h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.tags-list-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-badge-detail {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    color: #667eea;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tag-badge-detail:hover {
    background: rgba(102, 126, 234, 0.25);
    border-color: #667eea;
    transform: translateY(-2px);
}

/* Sidebar */
.sidebar-detail {
    position: sticky;
    top: 100px;
}

.sidebar-card-detail {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.sidebar-card-detail h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
}

.info-list-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label-detail {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.info-value-detail {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: right;
}

/* Gallery Section */
.gallery-section-detail {
    position: relative;
    z-index: 1;
    margin: 3rem 0;
}

.gallery-header-detail {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header-detail h2 {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.gallery-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item-detail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item-detail:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.gallery-image-detail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item-detail:hover .gallery-image-detail {
    transform: scale(1.1);
}

.gallery-overlay-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-item-detail:hover .gallery-overlay-detail {
    opacity: 1;
}

.gallery-overlay-detail i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

/* Related Section */
.related-section-detail {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-header-detail {
    text-align: center;
    margin-bottom: 2.5rem;
}

.related-header-detail h2 {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-card-detail {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-card-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.related-image-detail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card-detail:hover .related-image-detail {
    transform: scale(1.1);
}

.related-content-detail {
    padding: 1.25rem;
}

.related-category-detail {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    font-size: 0.7rem;
    color: #667eea;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.related-title-detail {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.related-description-detail {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Action Buttons */
.actions-detail {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-detail-primary,
.btn-detail-outline {
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-detail-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-detail-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-detail-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-detail-outline:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .detail-page-modern {
        padding: 90px 0 40px;
    }
    
    .detail-hero-content {
        max-width: 100%;
    }
    
    .content-wrapper-detail {
        padding: 2rem;
    }
    
    .sidebar-detail {
        position: static;
        margin-top: 2rem;
    }
    
    .gallery-grid-detail {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .related-grid-detail {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .detail-page-modern {
        padding: 80px 0 30px;
    }
    
    .detail-hero-modern {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .detail-title-modern {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .detail-excerpt-modern {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .meta-info-detail {
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .meta-item-detail {
        font-size: 0.8125rem;
    }
    
    .category-badge-detail {
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
        margin-bottom: 1rem;
    }
    
    .featured-image-detail {
        margin: 2rem 0;
        border-radius: 15px;
    }
    
    .featured-image-detail img {
        max-height: 300px;
    }
    
    .content-section-detail {
        margin: 2rem 0;
    }
    
    .content-wrapper-detail {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .content-text-detail {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .content-text-detail h2 {
        font-size: 1.5rem;
    }
    
    .content-text-detail h3 {
        font-size: 1.25rem;
    }
    
    .tags-section-detail {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .gallery-grid-detail {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .gallery-header-detail h2 {
        font-size: 1.5rem;
    }
    
    .related-section-detail {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .related-header-detail h2 {
        font-size: 1.5rem;
    }
    
    .related-grid-detail {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .actions-detail {
        flex-direction: column;
        margin-top: 1.5rem;
    }
    
    .btn-detail-primary,
    .btn-detail-outline {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar-card-detail {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .detail-hero-modern {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .detail-title-modern {
        font-size: 1.5rem;
    }
    
    .meta-info-detail {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .meta-item-detail {
        width: 100%;
        justify-content: flex-start;
    }
    
    .gallery-grid-detail {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox Custom Styles - Override Lightbox2 Defaults */
.lb-overlay {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    z-index: 9998 !important;
}

.lb-container {
    padding: 0 !important;
    z-index: 9999 !important;
    position: relative !important;
}

.lb-wrapper {
    position: relative !important;
    max-width: 85vw !important;
    max-height: 85vh !important;
    margin: 0 auto !important;
}

.lb-image {
    border: none !important;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    max-width: 85vw !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Navigation - Resmin yanında */
.lb-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 10000 !important;
    width: calc(100% + 160px) !important;
    height: 0 !important;
    left: -80px !important;
    pointer-events: none !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1 !important;
    background: rgba(102, 126, 234, 0.9) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    text-decoration: none !important;
    position: absolute !important;
    top: 0 !important;
    cursor: pointer !important;
    pointer-events: all !important;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    background: rgba(102, 126, 234, 1) !important;
    transform: translateY(-50%) scale(1.1);
}

.lb-nav a.lb-prev {
    left: -80px !important;
}

.lb-nav a.lb-next {
    right: -80px !important;
    left: auto !important;
}

.lb-nav a.lb-prev::after {
    content: '←' !important;
    font-size: 28px !important;
    color: white !important;
    font-weight: bold;
    line-height: 1;
    display: block !important;
}

.lb-nav a.lb-next::after {
    content: '→' !important;
    font-size: 28px !important;
    color: white !important;
    font-weight: bold;
    line-height: 1;
    display: block !important;
}

/* Close Button */
.lb-close {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    top: -60px !important;
    right: 0 !important;
    left: auto !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    z-index: 10001 !important;
    cursor: pointer !important;
    position: absolute !important;
    text-decoration: none !important;
    pointer-events: all !important;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: rotate(90deg) scale(1.1);
}

.lb-close::before {
    content: '✕' !important;
    font-size: 24px !important;
    color: white !important;
    font-weight: bold;
    line-height: 1;
    display: block !important;
}

.lb-dataContainer {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px);
    padding: 1.5rem !important;
    border-radius: 15px;
    margin-top: 20px;
    z-index: 10000 !important;
}

.lb-data .lb-details {
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 600;
}

.lb-data .lb-number {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.lb-loader {
    border-color: #667eea transparent #667eea transparent !important;
}

@media (max-width: 768px) {
    .lb-nav a.lb-prev {
        left: -60px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .lb-nav a.lb-next {
        right: -60px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .lb-close {
        width: 45px !important;
        height: 45px !important;
        top: -50px !important;
    }
    
    .lb-image {
        max-width: 90vw !important;
        max-height: 80vh !important;
    }
    
    .lb-wrapper {
        max-width: 90vw !important;
    }
    
    .lb-nav {
        width: calc(100% + 120px) !important;
        left: -60px !important;
    }
}



/* Comments Section */
.comments-section-detail {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-header-detail {
    margin-bottom: 2rem;
}

.comments-header-detail h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.comment-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    font-weight: 400;
}

.comment-form-wrapper-detail {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.comment-form-wrapper-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.comment-form-wrapper-detail .form-input-modern {
    width: 100%;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.comment-form-wrapper-detail .form-input-modern:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.comment-form-wrapper-detail .form-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.comments-list-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item-detail {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.comment-item-detail:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.comment-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-author-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.comment-author-detail a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-author-detail a:hover {
    color: #667eea;
}

.comment-date-detail {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.comment-content-detail {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    white-space: pre-wrap;
}

.no-comments-detail {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .comment-form-wrapper-detail {
        padding: 1.5rem;
    }
    
    .comment-header-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comments-header-detail h2 {
        font-size: 1.5rem;
    }
}

/* Social Sharing Buttons */
.social-sharing-detail {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-sharing-detail h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
}

.sharing-buttons-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-family: inherit;
}

.share-btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.share-btn-detail i {
    font-size: 1.1rem;
}

.share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.share-copy:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.share-copy.copied {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.share-copy.copied span::after {
    content: ' ✓';
    color: #22c55e;
    font-weight: 600;
}

@media (max-width: 768px) {
    .sharing-buttons-detail {
        gap: 0.5rem;
    }
    
    .share-btn-detail {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .share-btn-detail span {
        display: none;
    }
    
    .share-btn-detail {
        padding: 0.75rem;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
}
