.blog-detail-shell {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(161, 44, 47, 0.08);
    box-shadow: 0 28px 72px rgba(24, 32, 56, 0.08);
    overflow: hidden;
}

.blog-detail-hero {
    position: relative;
    /* height: clamp(260px, 34vw, 420px); */
    min-height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7f3 0%, #f8f4f1 100%);
    /* aspect-ratio: 13 / 9; */
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.blog-detail-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.blog-detail-hero .hero-label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #a12c2f;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.blog-detail-body {
    padding: 38px 42px 42px;
}

.blog-detail-body > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.blog-detail-title {
    font-size: 2.75rem;
    line-height: 1.05;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 18px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 26px;
    color: #5e5e5e;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: rgba(161, 44, 47, 0.06);
    border: 1px solid rgba(161, 44, 47, 0.11);
    color: #5d2d2f;
    font-size: 0.95rem;
    font-weight: 600;
}

.blog-detail-meta i {
    color: #a12c2f;
}

.blog-detail-excerpt {
    max-width: 860px;
    color: #4f4f4f;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 30px;
}

.blog-detail-content {
    color: #434343;
    line-height: 1.88;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: #1f1f1f;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 1.3rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content img,
.blog-detail-content figure {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    margin: 2rem 0;
}

.blog-detail-content blockquote {
    margin: 2rem 0;
    padding: 24px 26px;
    border-left: 4px solid #a12c2f;
    background: rgba(161, 44, 47, 0.06);
    border-radius: 18px;
    color: #4a4a4a;
    font-style: italic;
}

.blog-detail-action {
    margin-top: 36px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 32px;
    border-radius: 24px;
    border: 1px solid rgba(161, 44, 47, 0.12);
    background: linear-gradient(135deg, rgba(161, 44, 47, 0.06), rgba(255, 255, 255, 0.95));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.blog-detail-action h5 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f1f1f;
}

.blog-detail-action .btn-cta {
    min-width: 180px;
    background: #a12c2f;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-detail-action .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(161, 44, 47, 0.25);
}

.related-blogs-section {
    margin: 40px auto 0;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 28px 34px 30px;
    border-radius: 28px;
    border: 1px solid rgba(161, 44, 47, 0.1);
    background:
        radial-gradient(circle at top right, rgba(161, 44, 47, 0.08), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #fff7f2 60%, #f8fafc 100%);
    box-shadow: 0 24px 58px rgba(24, 32, 56, 0.08);
    overflow: hidden;
}

.related-blogs-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.related-blogs-head h2 {
    margin: 0 0 8px;
    color: #1f1f1f;
    font-size: 2rem;
    line-height: 1.15;
}

.related-blogs-head p {
    margin: 0;
    color: #5a5a5a;
    line-height: 1.7;
}

.related-blogs-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.related-blogs-control {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(161, 44, 47, 0.14);
    border-radius: 50%;
    background: #ffffff;
    color: #8a2529;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(24, 32, 56, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.related-blogs-control:hover:not(:disabled) {
    transform: translateY(-2px);
    color: #a12c2f;
    box-shadow: 0 18px 30px rgba(24, 32, 56, 0.1);
}

.related-blogs-control:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.related-blogs-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, calc(33.333% - 12px));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.related-blogs-track::-webkit-scrollbar {
    display: none;
}

.related-blog-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.related-blog-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(161, 44, 47, 0.08);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(24, 32, 56, 0.055);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-blog-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(161, 44, 47, 0.18);
    box-shadow: 0 20px 40px rgba(24, 32, 56, 0.09);
    text-decoration: none;
}

.related-blog-media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #fff6f0 0%, #f5f7fa 100%);
    overflow: hidden;
}

.related-blog-media img,
.related-blog-placeholder {
    width: 100%;
    height: 100%;
}

.related-blog-media img {
    object-fit: cover;
    display: block;
}

.related-blog-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a12c2f;
    font-size: 2rem;
}

.related-blog-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 20px 18px;
}

.related-blog-date {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(161, 44, 47, 0.07);
    color: #8d2d30;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.related-blog-content h3 {
    margin: 0 0 10px;
    color: #1f1f1f;
    font-size: 1.12rem;
    line-height: 1.42;
}

.related-blog-content p {
    margin: 0;
    color: #565656;
    line-height: 1.75;
}

.related-blog-cta {
    margin-top: auto;
    padding-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #a12c2f;
    font-weight: 800;
}

.related-blogs-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.related-blogs-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(161, 44, 47, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.related-blogs-dot:hover {
    transform: scale(1.08);
    background: rgba(161, 44, 47, 0.35);
}

.related-blogs-dot.is-active {
    background: #a12c2f;
    box-shadow: 0 0 0 5px rgba(161, 44, 47, 0.12);
}

.blog-responses-section {
    margin: 40px auto 0;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 28px 34px 22px;
    border-radius: 28px;
    border: 1px solid rgba(161, 44, 47, 0.1);
    background:
        radial-gradient(circle at top left, rgba(217, 139, 95, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fff8f4 54%, #f7f8fb 100%);
    box-shadow: 0 24px 58px rgba(24, 32, 56, 0.08);
}

.blog-responses-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.blog-responses-head h2 {
    margin: 0;
    color: #1f1f1f;
    font-size: 2rem;
    line-height: 1.15;
}

.blog-response-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 4px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(161, 44, 47, 0.13);
    background: #ffffff;
    color: #8a2529;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(24, 32, 56, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.blog-response-link:hover {
    color: #a12c2f;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(24, 32, 56, 0.1);
}

.blog-responses-list {
    display: grid;
    gap: 12px;
}

.blog-question-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(32, 139, 79, 0.18);
    background: rgba(32, 139, 79, 0.08);
    color: #16683a;
    font-weight: 700;
}

.blog-response-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 22px 18px;
    border-radius: 24px;
    border: 1px solid rgba(161, 44, 47, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(24, 32, 56, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-response-card:hover {
    transform: translateY(-3px);
    border-color: rgba(161, 44, 47, 0.16);
    box-shadow: 0 22px 42px rgba(24, 32, 56, 0.09);
}

.blog-response-avatar {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a12c2f 0%, #d98b5f 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(161, 44, 47, 0.2);
}

.blog-response-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.blog-response-meta p {
    margin: 0;
    color: #2a2a2a;
    font-size: 1.02rem;
}

.blog-response-meta strong {
    color: #1f1f1f;
}

.blog-response-meta time {
    flex-shrink: 0;
    color: #a12c2f;
    font-size: 0.86rem;
    font-weight: 600;
}

.blog-response-date-status {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-question-status {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-question-status.is-answered {
    background: rgba(32, 139, 79, 0.1);
    color: #16683a;
}

.blog-question-status.is-pending {
    background: rgba(217, 139, 95, 0.16);
    color: #8a4b24;
}

.blog-response-message {
    margin: 0;
    color: #444444;
    font-size: 1rem;
    line-height: 1.8;
}

.blog-response-actions {
    margin-top: 10px;
}

.blog-answer-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(161, 44, 47, 0.14);
    border-radius: 999px;
    padding: 0.62rem 0.95rem;
    background: #ffffff;
    color: #8a2529;
    font-weight: 800;
    font-size: 0.82rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(24, 32, 56, 0.05);
}

.blog-community-answers {
    margin-top: 12px;
    display: grid;
    gap: 9px;
}

.blog-community-answers h4 {
    margin: 0;
    color: #1f1f1f;
    font-size: 1rem;
}

.blog-community-answer {
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(161, 44, 47, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.blog-community-answer-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.blog-community-answer-meta time {
    color: #a12c2f;
    font-size: 0.82rem;
    font-weight: 700;
}

.blog-community-answer p {
    margin: 0;
    color: #4b4b4b;
    line-height: 1.72;
}

.blog-question-text {
    font-weight: 700;
    color: #292929;
}

.blog-answer-box {
    margin-top: 12px;
    padding: 13px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(161, 44, 47, 0.06), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(161, 44, 47, 0.09);
}

.blog-answer-box span {
    display: inline-flex;
    margin-bottom: 6px;
    color: #a12c2f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-answer-box p {
    margin: 0;
    color: #474747;
    line-height: 1.75;
}

.blog-answer-pending {
    border-style: dashed;
    background: rgba(255, 248, 244, 0.82);
}

.blog-answer-pending p {
    color: #6a5a55;
}

.blog-responses-empty {
    padding: 28px 22px;
    border-radius: 22px;
    border: 1px dashed rgba(161, 44, 47, 0.2);
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
    color: #555555;
}

.blog-responses-empty i {
    margin-bottom: 10px;
    color: #a12c2f;
    font-size: 2rem;
}

.blog-responses-empty p {
    margin: 0;
}

.blog-question-form {
    margin: 0;
    padding: 0;
}

.blog-modal-open {
    overflow: hidden;
}

.blog-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    place-items: center;
    min-height: 100vh;
    padding: 18px;
}

.blog-modal.is-open {
    display: grid;
}

.blog-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 20, 20, 0.54);
    backdrop-filter: blur(5px);
}

.blog-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(161, 44, 47, 0.1);
    background:
        radial-gradient(circle at top right, rgba(217, 139, 95, 0.14), transparent 30%),
        #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.blog-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(161, 44, 47, 0.14);
    border-radius: 50%;
    background: #ffffff;
    color: #8a2529;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.blog-modal-dialog h3 {
    margin: 0 42px 10px 0;
    color: #1f1f1f;
    font-size: 1.28rem;
}

.blog-modal-question {
    margin: 0 0 12px;
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(161, 44, 47, 0.05);
    color: #3d3d3d;
    font-weight: 700;
}

.blog-question-form-head {
    margin-bottom: 12px;
}

.blog-question-form h3 {
    margin: 0;
    color: #1f1f1f;
    font-size: 1.35rem;
}

.blog-question-form label {
    display: block;
    margin-bottom: 5px;
    margin-top: 8px;
    color: #342f2f;
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-question-form .form-control {
    margin-bottom: 2px;
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(161, 44, 47, 0.12);
    background: #ffffff;
    color: #2f2f2f;
    box-shadow: none;
}

.blog-question-form textarea.form-control {
    min-height: 92px;
    resize: vertical;
}

.blog-question-form .form-control:focus {
    border-color: rgba(161, 44, 47, 0.36);
    box-shadow: 0 0 0 0.2rem rgba(161, 44, 47, 0.08);
}

.blog-question-submit {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 190px;
    border: none;
    border-radius: 999px;
    padding: 11px 20px;
    background: #a12c2f;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 26px rgba(161, 44, 47, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-question-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(161, 44, 47, 0.32);
}

.blog-seo-section {
    margin-top: 38px;
    position: relative;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 32px;
    border: 1px solid rgba(161, 44, 47, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(161, 44, 47, 0.08), transparent 28%),
        linear-gradient(180deg, #fffaf7 0%, #ffffff 62%);
    box-shadow: 0 20px 48px rgba(24, 32, 56, 0.06);
    overflow: hidden;
}

.blog-seo-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a12c2f 0%, #d98b5f 52%, #f3d5b8 100%);
    opacity: 0.9;
}

.blog-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(161, 44, 47, 0.07);
    color: #a12c2f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(161, 44, 47, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.blog-section-badge:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a12c2f 0%, #d98b5f 100%);
    box-shadow: 0 0 0 4px rgba(161, 44, 47, 0.08);
}

.blog-seo-section h2 {
    position: relative;
    z-index: 1;
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1f1f1f;
    letter-spacing: -0.02em;
}

.blog-seo-section h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.blog-seo-section p:last-child,
.blog-faq-item p:last-child {
    margin-bottom: 0;
}

.blog-seo-section > p {
    position: relative;
    z-index: 1;
    color: #555555;
    line-height: 1.85;
}

.blog-seo-grid {
    counter-reset: overview-card;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-seo-card {
    counter-increment: overview-card;
    position: relative;
    padding: 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f3 100%);
    border: 1px solid rgba(161, 44, 47, 0.08);
    box-shadow: 0 14px 30px rgba(24, 32, 56, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-seo-card:before {
    content: counter(overview-card, decimal-leading-zero);
    position: absolute;
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(161, 44, 47, 0.12), rgba(217, 139, 95, 0.16));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9c3534;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.blog-seo-card:hover,
.blog-question-item:hover,
.blog-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(24, 32, 56, 0.08);
}

.blog-seo-card p {
    margin: 0;
    padding-top: 42px;
    color: #4a4a4a;
}

.blog-seo-list {
    margin: 0;
    padding-left: 1.15rem;
}

.blog-seo-list li {
    margin-bottom: 1rem;
    color: #474747;
    padding-left: 0.2rem;
}

.blog-question-stack,
.blog-faq-list {
    display: grid;
    gap: 16px;
}

.blog-question-item,
.blog-faq-item {
    position: relative;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(161, 44, 47, 0.08);
    box-shadow: 0 12px 28px rgba(24, 32, 56, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-question-item {
    font-weight: 600;
    color: #2c2c2c;
    padding-left: 58px;
}

.blog-question-item:before {
    content: '?';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a12c2f 0%, #c76f49 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.blog-faq-item h3:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a12c2f 0%, #d98b5f 100%);
    flex-shrink: 0;
}

.blog-keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-keyword-cloud span {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.05rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(161, 44, 47, 0.08), rgba(217, 139, 95, 0.12));
    color: #7d1f23;
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid rgba(161, 44, 47, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.blog-seo-note {
    margin-top: 18px;
    padding: 14px 16px;
    color: #666666;
    font-size: 0.95rem;
    border-radius: 16px;
    background: rgba(161, 44, 47, 0.04);
    border: 1px dashed rgba(161, 44, 47, 0.14);
}

@media (max-width: 991.98px) {
    .blog-detail-body {
        padding: 28px 24px 30px;
    }

    .related-blogs-track {
        grid-auto-columns: minmax(260px, calc(50% - 10px));
    }

    .blog-seo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-title {
        font-size: 2.2rem;
    }

    .blog-detail-hero {
        /* height: clamp(220px, 58vw, 320px); */
        aspect-ratio: 12 / 8;
    }

    .blog-detail-action {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-detail-action .btn-cta {
        width: 100%;
        text-align: center;
    }

    .related-blogs-section {
        width: calc(100% - 8px);
        max-width: calc(100% - 8px);
        padding: 22px 16px 20px;
        border-radius: 22px;
    }

    .related-blogs-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-blogs-head h2 {
        font-size: 1.55rem;
    }

    .related-blogs-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .related-blogs-track {
        grid-auto-columns: 100%;
        gap: 14px;
    }

    .related-blog-card-link {
        border-radius: 20px;
    }

    .related-blog-content {
        padding: 18px 16px 16px;
    }

    .blog-seo-section {
        margin-top: 28px;
        width: calc(100% - 8px);
        max-width: calc(100% - 8px);
        padding: 24px 18px;
        border-radius: 22px;
    }

    .blog-detail-action {
        width: calc(100% - 8px);
        max-width: calc(100% - 8px);
    }

    .blog-responses-section {
        width: calc(100% - 8px);
        max-width: calc(100% - 8px);
        padding: 22px 16px 18px;
        border-radius: 22px;
    }

    .blog-responses-head,
    .blog-response-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-responses-head h2 {
        font-size: 1.55rem;
    }

    .blog-response-link {
        width: 100%;
    }

    .blog-response-card {
        grid-template-columns: 1fr;
        padding: 16px 14px;
        border-radius: 18px;
    }

    .blog-response-avatar {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .blog-modal {
        padding: 12px;
    }

    .blog-modal-dialog {
        width: min(390px, 100%);
        max-height: calc(100vh - 24px);
        padding: 16px 14px;
        border-radius: 18px;
    }

    .blog-modal-dialog h3,
    .blog-question-form h3 {
        font-size: 1.2rem;
    }

    .blog-question-form textarea.form-control {
        min-height: 96px;
    }

    .blog-question-submit {
        width: 100%;
    }

    .blog-seo-section h2 {
        font-size: 1.42rem;
    }

    .blog-seo-card,
    .blog-question-item,
    .blog-faq-item {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .blog-question-item {
        padding-left: 50px;
    }

    .blog-question-item:before {
        left: 16px;
        width: 24px;
        height: 24px;
    }

    .blog-keyword-cloud span {
        font-size: 0.86rem;
        padding: 0.68rem 0.92rem;
    }
}
