
:root {
    --amber: #d4a24a;
    --amber-light: #e8c078;
    --amber-dark: #a67c32;
    --amber-glow: rgba(212, 162, 74, 0.35);
    --brown-dark: #1a1410;
    --brown: #2a2018;
    --brown-light: #3d2e22;
    --cream: #f5efe6;
    --text: #f8f4ed;
    --text-dim: rgba(248, 244, 237, 0.75);
    --text-muted: rgba(248, 244, 237, 0.5);
    --card-bg: rgba(26, 20, 16, 0.94);
    --card-border: rgba(212, 162, 74, 0.18);
    --success: #6b9b37;
    --error: #c45a5a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    min-height: 100%;
    background: var(--brown-dark);
    line-height: 1.5;
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(26, 20, 16, 0.4) 0%, rgba(26, 20, 16, 0.7) 100%);
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--amber-light), var(--amber));
    box-shadow: 0 0 8px var(--amber-glow);
    opacity: 0;
    animation: particleDrift 18s ease-in-out infinite;
}

@keyframes particleDrift {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    15% { opacity: 0.6; }
    50% { opacity: 0.8; }
    85% { opacity: 0.5; }
    100% {
        opacity: 0;
        transform: translateY(-180px);
    }
}

.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px 20px 20px;
}

.main-content {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    align-items: flex-start;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 520px;
    animation: cardFadeIn 0.6s ease;
}

.card.reviews-card {
    max-width: 720px;
}

.card.knowledge-card {
    max-width: 1040px;
    border-radius: 20px;
}

.card.knowledge-article-card {
    max-width: 1040px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--amber);
    box-shadow: 0 0 20px var(--amber-glow);
    flex-shrink: 0;
}

.header-text {
    flex: 1;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--amber-light);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.title {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 1px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
}

.stat {
    text-align: center;
}

.stat-value {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 4px;
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}

.rating-star {
    color: var(--amber);
    font-size: 18px;
    line-height: 1;
}

.star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
    font-size: 14px;
}

.star {
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.star.filled {
    color: var(--amber);
}

.star.partial {
    position: relative;
    color: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.star.partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--amber);
    clip-path: inset(0 calc(100% - var(--partial-width, 90%)) 0 0);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.actions-row-2 {
    margin-bottom: 24px;
}

.btn {
    flex: 1;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    color: var(--brown-dark);
    border-color: var(--amber);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px var(--amber-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(212, 162, 74, 0.15);
    color: var(--text);
    border-color: var(--card-border);
}

.btn-secondary:hover {
    background: rgba(212, 162, 74, 0.25);
    border-color: var(--amber);
}

.btn-outline {
    background: transparent;
    color: var(--text-dim);
    border-color: var(--card-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text);
}

.btn.copied {
    background: rgba(107, 155, 55, 0.2);
    border-color: var(--success);
    color: var(--success);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    margin: 20px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--amber-light);
    margin-bottom: 16px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 13px;
    color: var(--text-muted);
    text-align: left;
    flex-shrink: 0;
}

.info-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
    margin-left: auto;
}

.copy-address {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 12px;
    color: var(--amber-light);
    cursor: pointer;
    text-align: left;
    word-break: break-all;
    transition: all 0.25s ease;
}

.copy-address:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--amber);
}

.copy-address.copied {
    background: rgba(107, 155, 55, 0.15);
    border-color: var(--success);
    color: var(--success);
}

.verify-section {
    margin-top: 4px;
}

.verify-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.verify-form {
    display: flex;
    gap: 10px;
}

.verify-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: all 0.25s ease;
}

.verify-form input::placeholder {
    color: var(--text-muted);
}

.verify-form input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(212, 162, 74, 0.1);
}

.verify-form button {
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-dark);
    cursor: pointer;
    transition: all 0.25s ease;
}

.verify-form button:hover {
    box-shadow: 0 4px 16px var(--amber-glow);
    transform: translateY(-1px);
}

.verify-result {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: resultReveal 0.3s ease;
}

@keyframes resultReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.verify-result.show {
    display: block;
}

.verify-result.success {
    background: rgba(107, 155, 55, 0.15);
    border: 1px solid rgba(107, 155, 55, 0.3);
    color: var(--success);
}

.verify-result.error {
    background: rgba(196, 90, 90, 0.15);
    border: 1px solid rgba(196, 90, 90, 0.3);
    color: var(--error);
}

.footer-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.toast {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-80px);
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--success);
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--success);
    z-index: 1000;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brown-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--amber-dark);
}

::selection {
    background: var(--amber);
    color: var(--brown-dark);
}

@media (max-width: 560px) {
    .main {
        padding: 24px 16px;
    }

    .card {
        padding: 28px 24px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .name {
        font-size: 24px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .actions {
        flex-direction: column;
    }

    .verify-form {
        flex-direction: column;
    }

    .verify-form button {
        width: 100%;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.25s ease;
}

.stat-card:hover {
    border-color: var(--card-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 6px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.reviews-container {
    max-height: 70vh;
    overflow-y: auto;
    margin-bottom: 28px;
    padding-right: 8px;
}

.review-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

.review-item:hover {
    border-color: var(--card-border);
    background: rgba(0, 0, 0, 0.35);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--card-border);
}

.review-author {
    font-weight: 600;
    color: var(--amber-light);
    font-size: 14px;
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
}

.review-content {
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.review-content br {
    margin-bottom: 8px;
}

.reviews-sidebar {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 0 20px 20px 0;
    border-left: none;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    animation: cardFadeIn 0.6s ease;
    min-height: 100%;
}

.sidebar-header {
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--amber-light);
    margin: 0;
}

.reviews-sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 0;
    padding-right: 4px;
}

.reviews-sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.reviews-sidebar-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.reviews-sidebar-content::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 3px;
}

.reviews-sidebar-content::-webkit-scrollbar-thumb:hover {
    background: var(--amber-dark);
}

.sidebar-review-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    animation: reviewFadeIn 0.4s ease forwards;
    cursor: pointer;
}

.sidebar-review-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--card-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes reviewFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-review-item:hover {
    border-color: var(--card-border);
    background: rgba(0, 0, 0, 0.35);
}

.sidebar-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.sidebar-review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--card-border);
    flex-shrink: 0;
}

.sidebar-review-author {
    font-weight: 600;
    color: var(--amber-light);
    font-size: 13px;
}

.sidebar-review-date {
    font-size: 10px;
    color: var(--text-muted);
}

.sidebar-review-content {
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
    margin-top: 10px;
}

.review-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.review-search,
.review-filter {
    flex: 1;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: all 0.25s ease;
}

.review-search::placeholder {
    color: var(--text-muted);
}

.review-search:focus,
.review-filter:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(212, 162, 74, 0.1);
}

.review-filter {
    cursor: pointer;
}

@media (max-width: 960px) {
    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .card {
        border-radius: 20px;
        border: 1px solid var(--card-border);
    }

    .card.knowledge-article-card {
        border-radius: 20px;
        border: 1px solid var(--card-border);
    }

    .reviews-sidebar {
        max-width: 100%;
        border-radius: 20px;
        border: 1px solid var(--card-border);
    }
}

/* Knowledge Base Styles */
.kb-nav-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.kb-nav-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: var(--text-dim);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.kb-nav-btn:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: var(--card-border);
    color: var(--text);
}

.kb-nav-btn.active {
    background: rgba(212, 162, 74, 0.15);
    border-color: var(--amber);
    color: var(--amber-light);
    box-shadow: 0 0 12px rgba(212, 162, 74, 0.2);
}

.kb-article-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.kb-article-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kb-article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.kb-article-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 8px;
}

.kb-article-content::-webkit-scrollbar {
    width: 6px;
}

.kb-article-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.kb-article-content::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 3px;
}

.kb-article-content::-webkit-scrollbar-thumb:hover {
    background: var(--amber-dark);
}

.kb-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kb-article {
    padding: 0;
    margin: 0;
}

.kb-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--amber-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.kb-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--amber-light);
    margin-top: 24px;
    margin-bottom: 12px;
}

.kb-meta {
    margin-bottom: 20px;
}

.kb-link {
    color: var(--amber);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s ease;
}

.kb-link:hover {
    color: var(--amber-light);
    text-decoration: underline;
}

.kb-question {
    background: rgba(212, 162, 74, 0.1);
    border-left: 3px solid var(--amber);
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text);
}

.kb-answer {
    background: rgba(107, 155, 55, 0.1);
    border-left: 3px solid var(--success);
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text);
}

.kb-steps {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.8;
}

.kb-steps li {
    margin-bottom: 12px;
}

.kb-steps li strong {
    color: var(--text);
    font-weight: 600;
}

.kb-steps a {
    color: var(--amber);
    text-decoration: none;
}

.kb-steps a:hover {
    text-decoration: underline;
}

.kb-list {
    margin: 12px 0;
    padding-left: 24px;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.8;
}

.kb-list li {
    margin-bottom: 8px;
}

.kb-list a {
    color: var(--amber);
    text-decoration: none;
}

.kb-list a:hover {
    text-decoration: underline;
}

.kb-note {
    background: rgba(212, 162, 74, 0.15);
    border: 1px solid rgba(212, 162, 74, 0.3);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.kb-note strong {
    color: var(--amber-light);
    font-weight: 600;
}

.kb-warning {
    background: rgba(196, 90, 90, 0.15);
    border: 1px solid rgba(196, 90, 90, 0.3);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.kb-warning strong {
    color: var(--error);
    font-weight: 600;
}

.kb-success {
    background: rgba(107, 155, 55, 0.15);
    border: 1px solid rgba(107, 155, 55, 0.3);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--success);
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

.kb-section {
    margin: 24px 0;
}

.kb-content-text {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.8;
    margin: 16px 0;
}

.kb-content-text p {
    margin-bottom: 12px;
}

.kb-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.kb-links .btn {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 560px) {
    .main {
        padding: 24px 16px;
    }

    .card {
        padding: 28px 24px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .name {
        font-size: 24px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .actions {
        flex-direction: column;
    }

    .verify-form {
        flex-direction: column;
    }

    .verify-form button {
        width: 100%;
    }
    
    .review-filters {
        flex-direction: column;
    }
    
    .review-search,
    .review-filter {
        min-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .kb-title {
        font-size: 20px;
    }

    .kb-subtitle {
        font-size: 16px;
    }

    .kb-links {
        flex-direction: column;
    }

    .kb-links .btn {
        width: 100%;
    }

    .kb-grid {
        grid-template-columns: 1fr;
    }

    .card.knowledge-card,
    .card.knowledge-article-card {
        max-width: 100%;
    }
}