.martyr-detail-section {
    min-height: 60vh;
    padding: 80px 0;
    background: #f8f9fa;
}

.breadcrumb {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    color: var(--primary-color, #dc3545);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.martyr-detail-card,
.related-martyrs-card {
    background: white;
    border-radius: 12px;
}

.martyr-detail-image-wrapper {
    position: relative;
}

.martyr-detail-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.martyr-detail-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1.5rem;
}

.martyr-detail-info {
    margin-top: 1rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    font-size: 1rem;
    color: #2c3e50;
}

.info-content strong {
    color: var(--primary-color, #dc3545);
    margin-right: 0.5rem;
}

.martyr-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.description-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1rem;
}

.description-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
}

.description-content p {
    margin-bottom: 1rem;
}

.description-content ul,
.description-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.description-content li {
    margin-bottom: 0.5rem;
}

.description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.related-martyrs-card .card-header {
    background: linear-gradient(135deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    border: none;
    border-radius: 12px 12px 0 0;
}

.related-martyr-item {
    transition: all 0.3s ease;
}

.related-martyr-item:hover {
    background: #f8f9fa;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    border-radius: 8px;
}

.related-martyr-image-wrapper {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.related-martyr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-martyr-info h6 {
    margin: 0;
    font-size: 0.95rem;
}

.related-martyr-info a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.related-martyr-info a:hover {
    color: var(--primary-color, #dc3545);
}

@media (max-width: 768px) {
    .martyr-detail-section {
        padding: 40px 0;
    }
    
    .martyr-detail-name {
        font-size: 1.8rem;
    }
    
    .martyr-detail-image {
        max-width: 100%;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

