.blog-temp-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.content.blog-temp-detail .workspace {
    background: #fff;
    padding: 30px 40px !important;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .content.blog-temp-detail .workspace {
        padding: 16px 14px !important;
        margin: 0 10px;
        border-radius: 6px;
        overflow: hidden;
    }
    .blog-temp-detail__carousel {
        margin: 24px 10px 0;
    }
}

.blog-temp-detail__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    margin: 20px 0 20px;
}

/* glassmorphism orange date pill — detail page */
.blog-temp-detail__date {
    display: inline-block;
    width: auto;
    max-width: max-content;
    padding: 5px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.22) 0%, rgba(255, 94, 0, 0.30) 50%, rgba(255, 149, 0, 0.22) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    border: 1px solid rgba(255, 122, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #7a3a00;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    transition: background-position 0.6s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-temp-detail__date:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
}

.blog-temp-detail__date {
    display: block;
    width: fit-content;
    margin: 20px auto 20px;
}

.blog-temp-detail__title-image {
    margin: 0 0 32px;
}

.blog-temp-detail__title-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-block {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: start;
    margin: 0 0 40px;
}

.blog-block--image-left .blog-block__image {
    grid-column: 1;
    grid-row: 1;
}

.blog-block--image-left .blog-block__desc {
    grid-column: 2;
    grid-row: 1;
}

.blog-block--desc-left {
    grid-template-columns: 3fr 2fr;
}

.blog-block--desc-left .blog-block__desc {
    grid-column: 1;
    grid-row: 1;
}

.blog-block--desc-left .blog-block__image {
    grid-column: 2;
    grid-row: 1;
}

.blog-block--desc-only {
    display: block;
}

.blog-block--desc-only .blog-block__desc {
    width: 100%;
}

@media screen and (min-width: 1800px) {
    .blog-block {
        grid-template-columns: 1fr 3fr;
    }
    .blog-block--desc-left {
        grid-template-columns: 3fr 1fr;
    }
}

.blog-block__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-block__image,
.blog-block__desc {
    min-width: 0;
    max-width: 100%;
}

.blog-block__desc {
    line-height: 1.6;
    font-size: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.blog-block__desc * {
    max-width: 100%;
    box-sizing: border-box;
}

.blog-block__desc img,
.blog-block__desc iframe,
.blog-block__desc video,
.blog-block__desc table {
    max-width: 100%;
    height: auto;
}

.blog-block__desc p {
    margin: 0 0 12px;
}

.blog-block__desc ul,
.blog-block__desc ol {
    padding-left: 22px;
    margin: 0 0 12px;
}

.blog-temp-detail__desc {
    width: 100%;
    margin: 0 0 32px;
    line-height: 1.6;
    font-size: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.blog-temp-detail__desc * {
    max-width: 100%;
    box-sizing: border-box;
}

.blog-temp-detail__desc img,
.blog-temp-detail__desc iframe,
.blog-temp-detail__desc video,
.blog-temp-detail__desc table {
    max-width: 100%;
    height: auto;
}

.blog-temp-detail__desc p {
    margin: 0 0 12px;
}

.blog-temp-detail__desc ul,
.blog-temp-detail__desc ol {
    padding-left: 22px;
    margin: 0 0 12px;
}

.blog-temp-detail__carousel {
    margin-top: 40px;
}

.blog-extras-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0 0 40px;
}

.blog-extras-row--single .blog-faq,
.blog-extras-row--single .blog-howto {
    grid-column: 1 / -1;
}

.blog-faq,
.blog-howto {
    background: #f7faf2;
    border-radius: 8px;
    padding: 24px 28px;
    box-sizing: border-box;
    min-width: 0;
}

.blog-faq__title,
.blog-howto__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #1f3d0a;
}

.blog-faq__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-faq__item {
    border-bottom: 1px solid #dde6cf;
}

.blog-faq__item:last-child {
    border-bottom: 0;
}

.blog-faq__question {
    width: 100%;
    background: none;
    border: 0;
    padding: 14px 0;
    text-align: left;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e15;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.blog-faq__question:hover {
    color: #31a900;
}

.blog-faq__question:focus-visible {
    outline: 2px solid #31a900;
    outline-offset: 2px;
}

.blog-faq__chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.blog-faq__question[aria-expanded="true"] .blog-faq__chevron {
    transform: rotate(-135deg);
    margin-bottom: -2px;
}

.blog-faq__answer {
    padding: 0 0 14px;
    line-height: 1.55;
    font-size: 15px;
    color: #3a4a25;
}

.blog-howto__list {
    list-style: none;
    counter-reset: howto-step;
    margin: 0;
    padding: 0;
}

.blog-howto__step {
    counter-increment: howto-step;
    position: relative;
    padding: 4px 0 14px 44px;
    line-height: 1.55;
    font-size: 15px;
    color: #3a4a25;
}

.blog-howto__step::before {
    content: counter(howto-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #31a900;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-howto__step:last-child {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .blog-temp-detail__title {
        font-size: 24px;
    }

    .blog-block,
    .blog-block--desc-left,
    .blog-block--desc-only {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 28px;
        width: 100%;
    }

    .blog-block__image {
        order: 0;
        width: 100%;
    }

    .blog-block__desc {
        order: 1;
        font-size: 15px;
        width: 100%;
    }

    .blog-extras-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .blog-faq,
    .blog-howto {
        padding: 18px 18px;
    }

    .blog-faq__title,
    .blog-howto__title {
        font-size: 18px;
    }
}
