.article-hero {
    position: relative;
    width: 100%;
    height: 605px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
    background-color: #222;
}

.article-hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.article-hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.article-hero__content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.article-hero__content {
    max-width: 800px;
    color: #FFFFFF;
}

.article-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.article-tag-box {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.article-tag-box:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000;
}

.article-hero__title {
    font-weight: 400;
    line-height: 1.2;
    font-size: 32px;
    margin-bottom: 0;
    color: #FFFFFF;
}

@media (min-width: 750px) {
    .article-hero__title {
        font-size: 48px;
    }

    .article-hero {
        height: 715px;
    }
}

.article-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-top: 40px;
}

.article-footer-date,
.share-label {
    font-family: var(--font-body-family);
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

.article-footer-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-template {
    padding-bottom: 40px;
}

.article-template__content {
    margin-top: 0;
    line-height: 1.8;
    color: rgba(var(--color-foreground), 0.85);
}

.article-template .page-width.page-width--narrow {
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

.article-template__link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.article-template__content h2,
.article-template__content h3,
.article-template__content h4 {
    font-weight: 400;
}

.article-template__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-template__content figure,
.article-template__content .wp-block-image {
    display: block;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

.article-template__content figure img,
.article-template__content .wp-block-image img {
    width: 100% !important;
    height: auto !important;
    display: block;
    box-sizing: border-box;
}

.custom-share-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--color-foreground), 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.custom-share-link svg {
    width: 20px;
    height: 20px;
}

.custom-share-link:hover {
    color: rgb(var(--color-foreground));
}

.blogs__list-wrapper,
.blogs__list {
    margin: 0 auto !important;
}

@media (min-width: 960px) {
    .blogs__list {
        flex-wrap: wrap;
        max-width: 800px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media screen and (max-width: 959px) {
    .stage-blogs-btn .button {
        width: 80%;
    }
}

.article-hero__breadcrumb .breadcrumb,
.article-hero__breadcrumb nav,
.article-hero__breadcrumb a,
.article-hero__breadcrumb span,
.article-hero__breadcrumb .breadcrumb__divider,
.article-hero__breadcrumb .breadcrumb__last-crumb {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
    margin-bottom: 10px;
}

.product__info-container .breadcrumb {
    display: block !important;
}

.breadcrumb__divider {
    opacity: 0.3;
}

.breadcrumb__last-crumb {
    opacity: 0.6;
}

.article-template__content .wp-block-spacer,
.article-template__content .wp-block-separator {
    display: block;
    height: 1px !important;
    background-color: #000000;
    opacity: 0.1;
    width: 100%;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    clear: both;
}

.article-template__content h1,
.article-template__content h2,
.article-template__content h3,
.article-template__content h4,
.article-template__content h5,
.article-template__content h6,
.article-template__content h1 *,
.article-template__content h2 *,
.article-template__content h3 *,
.article-template__content h4 *,
.article-template__content h5 *,
.article-template__content h6 * {
    font-weight: 700;
}