/* ============================================
   PUBLIC CSS - Styles pour les pages publiques
   ============================================ */

/* Variables CSS communes */
:root {
    --primary-color: #5eafa8;
    --secondary-color: #89d2c7;
    --dark-color: #010101;
    --gray-color: #2f3035;
    --light-bg: #f8f9fa;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --card-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
}

/* ============================================
   STYLES POUR INDEX.HTML - Hero Section avec animations AI
   ============================================ */

/* AI Background Animation Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #5cada6 0%, #8ad3ca 100%);
    padding: 80px 0;
}

.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Particles Animation */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle-1 { width: 4px; height: 4px; top: 20%; right: 30%; animation-delay: 0s; }
.particle-2 { width: 6px; height: 6px; top: 60%; right: 20%; animation-delay: 1s; }
.particle-3 { width: 3px; height: 3px; top: 80%; right: 40%; animation-delay: 2s; }
.particle-4 { width: 5px; height: 5px; top: 30%; right: 15%; animation-delay: 3s; }
.particle-5 { width: 4px; height: 4px; top: 70%; right: 35%; animation-delay: 4s; }
.particle-6 { width: 7px; height: 7px; top: 10%; right: 25%; animation-delay: 5s; }
.particle-7 { width: 3px; height: 3px; top: 50%; right: 45%; animation-delay: 0.5s; }
.particle-8 { width: 5px; height: 5px; top: 90%; right: 10%; animation-delay: 1.5s; }
.particle-9 { width: 4px; height: 4px; top: 40%; right: 50%; animation-delay: 2.5s; }
.particle-10 { width: 6px; height: 6px; top: 15%; right: 40%; animation-delay: 3.5s; }
.particle-11 { width: 5px; height: 5px; top: 25%; right: 60%; animation-delay: 0.8s; }
.particle-12 { width: 4px; height: 4px; top: 75%; right: 30%; animation-delay: 1.8s; }
.particle-13 { width: 6px; height: 6px; top: 35%; right: 5%; animation-delay: 2.8s; }
.particle-14 { width: 3px; height: 3px; top: 85%; right: 55%; animation-delay: 3.8s; }
.particle-15 { width: 7px; height: 7px; top: 45%; right: 70%; animation-delay: 4.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

/* AI Elements */
.ai-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ai-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    animation: aiFloat 8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.ai-brain { top: 15%; right: 25%; animation-delay: 0s; }
.ai-chip { top: 25%; right: 15%; animation-delay: 2s; }
.ai-network { bottom: 30%; right: 35%; animation-delay: 4s; }
.ai-robot { bottom: 20%; right: 20%; animation-delay: 6s; }
.ai-cog { top: 35%; right: 45%; animation-delay: 1s; }
.ai-chart { bottom: 40%; right: 10%; animation-delay: 3s; }

@keyframes aiFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(-15px) scale(1.1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.9; }
    75% { transform: translateY(-15px) scale(1.1); opacity: 0.7; }
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbPulse 10s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.4) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.8; }
}

/* Neural Network Lines */
.neural-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neural-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 2px;
    animation: neuralFlow 12s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.line-1 { width: 200px; top: 20%; right: 30%; animation-delay: 0s; }
.line-2 { width: 150px; top: 40%; right: 15%; animation-delay: 2s; }
.line-3 { width: 180px; bottom: 30%; right: 25%; animation-delay: 4s; }
.line-4 { width: 120px; top: 60%; right: 40%; animation-delay: 6s; }
.line-5 { width: 160px; bottom: 20%; right: 10%; animation-delay: 8s; }
.line-6 { width: 140px; top: 30%; right: 50%; animation-delay: 1s; }
.line-7 { width: 190px; bottom: 50%; right: 35%; animation-delay: 5s; }

@keyframes neuralFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateX(100vw); opacity: 0; }
}

/* Hero Content Styles */
.hero-section .container {
    z-index: 2;
    position: relative;
}

.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3); }
}

.hero-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-image {
    animation: imageFloat 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   STYLES POUR MENTIONS/INDEX.HTML
   ============================================ */

.mentions-index-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 3rem 0;
}

.mentions-index-container .container {
    max-width: 1200px;
}

.mentions-index-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.mentions-index-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.family-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.family-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.family-header {
    background: linear-gradient(135deg, var(--gray-color) 0%, #3a3b40 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.family-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.family-emoji {
    font-size: 2rem;
}

.family-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.family-body {
    padding: 2rem;
}

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

.category-item {
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.category-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    font-size: 1.1rem;
    width: 100%;
}

.category-link:hover {
    color: var(--primary-color);
}

.category-link .badge {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
}

/* ============================================
   STYLES POUR MENTIONS/CATEGORY.HTML
   ============================================ */

.category-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 3rem 0;
}

.category-container .container {
    max-width: 1200px;
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}

.category-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.category-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.breadcrumb {
    margin-bottom: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray-color);
}

.queries-list {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.queries-list-header {
    background: linear-gradient(135deg, var(--gray-color) 0%, #3a3b40 100%);
    color: white;
    padding: 1.5rem 2rem;
}

.queries-list-header h2 {
    font-weight: 600;
    margin: 0;
    font-size: 1.5rem;
}

.query-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.query-item:last-child {
    border-bottom: none;
}

.query-item:hover {
    background: var(--light-bg);
}

.query-link {
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.query-link:hover {
    color: var(--primary-color);
}

.query-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.query-meta {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.query-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.query-item:hover .query-arrow {
    transform: translateX(5px);
}

/* ============================================
   STYLES POUR MENTIONS/QUERY_RESULTS_PUBLIC.HTML
   ============================================ */

.query-results-public-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 3rem 0;
}

.query-results-public-container .container {
    max-width: 1200px;
}

.query-results-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}

.query-results-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.query-results-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.tldr-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

.tldr-content * {
    color: white;
}

.tldr-content h1,
.tldr-content h2,
.tldr-content h3,
.tldr-content h4,
.tldr-content h5,
.tldr-content h6 {
    color: white;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.tldr-content p {
    margin-bottom: 0.75rem;
}

.tldr-content ul,
.tldr-content ol {
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.tldr-content li {
    margin-bottom: 0.5rem;
}

.tldr-content strong {
    font-weight: 700;
}

.faq-content {
    font-size: 1rem;
    line-height: 1.8;
}

.faq-content h1,
.faq-content h2,
.faq-content h3,
.faq-content h4,
.faq-content h5,
.faq-content h6 {
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-content h2 {
    font-size: 1.3rem;
}

.faq-content h3 {
    font-size: 1.15rem;
}

.faq-content p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.faq-content ul,
.faq-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
}

.faq-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article-item {
    background: var(--light-bg);
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.related-article-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(94, 175, 168, 0.15);
    transform: translateY(-2px);
}

.related-article-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    width: 100%;
}

.related-article-link:hover {
    color: var(--primary-color);
}

.related-article-content {
    flex-grow: 1;
}

.related-article-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.related-article-link:hover .related-article-title {
    color: var(--primary-color);
}

.related-article-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.related-article-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.related-article-item:hover .related-article-arrow {
    transform: translateX(5px);
}

.query-results-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: none;
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--gray-color) 0%, #3a3b40 100%);
    color: white;
    border: none;
    padding: 1.5rem;
}

.card-header h2 {
    font-weight: 600;
    margin: 0;
    font-size: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.brand-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(94, 175, 168, 0.15);
    transform: translateY(-2px);
}

.brand-item.target-brand {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(94, 175, 168, 0.1) 0%, rgba(137, 210, 199, 0.1) 100%);
}

.brand-item.target-brand .brand-rank {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.brand-rank {
    font-size: 1.25rem;
    font-weight: 700;
    background: #f8f9fa;
    color: var(--gray-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.brand-info {
    flex-grow: 1;
}

.brand-info strong {
    font-size: 1.1rem;
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

.brand-info small {
    color: #6c757d;
    font-size: 0.9rem;
}

.brand-count {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 60px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.target-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.source-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.source-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(94, 175, 168, 0.15);
    transform: translateY(-2px);
}

.source-item a {
    color: var(--primary-color);
    text-decoration: none;
    flex-grow: 1;
    font-size: 0.95rem;
    word-break: break-word;
}

.source-item a:hover {
    text-decoration: underline;
}

.source-count {
    background: linear-gradient(135deg, var(--gray-color) 0%, #3a3b40 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.review-item {
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(94, 175, 168, 0.15);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.review-username {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-content {
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.review-url {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.review-url a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.review-url a:hover {
    text-decoration: underline;
}

.review-form {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.review-form h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(94, 175, 168, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-review {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 175, 168, 0.3);
}

.btn-submit-review:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   EMPTY STATE (commun à plusieurs pages)
   ============================================ */

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-color);
}

.empty-state i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    /* Hero Section - Index */
    .hero-section {
        padding-left:1em;
        padding-right:1em;
    }

    .navbar-brand {
        padding-left:1em;
    }

    .particles-container,
    .ai-elements {
        display: none;
    }
    
    .neural-lines {
        display: block;
    }
    
    .gradient-orb {
        filter: blur(20px);
    }
    
    .orb-1 { width: 200px; height: 200px; }
    .orb-2 { width: 150px; height: 150px; }
    .orb-3 { width: 180px; height: 180px; }
    
    /* Mentions Index */
    .mentions-index-container {
        padding: 2rem 0;
    }
    
    .mentions-index-header h1 {
        font-size: 2rem;
    }
    
    .family-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Category Page */
    .category-container {
        padding: 2rem 0;
    }
    
    .category-header h1 {
        font-size: 2rem;
    }
    
    .query-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .query-arrow {
        align-self: flex-end;
    }
    
    /* Query Results Public */
    .query-results-public-container {
        padding: 2rem 0;
    }
    
    .query-results-header h1 {
        font-size: 1.75rem;
    }
    
    .brand-item {
        padding: 1rem;
    }
    
    .brand-rank {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .brand-info strong {
        font-size: 1rem;
    }
    
    .brand-count {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .source-item {
        padding: 0.75rem;
        flex-wrap: wrap;
    }
    
    .source-item a {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .source-count {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    .review-form {
        padding: 1rem;
    }
    
    .related-article-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .related-article-arrow {
        align-self: flex-end;
        margin-left: 0;
    }
}

