/* --- Article Header (Hero Section) --- */
.smytec-article-header {
    position: relative;
    width: calc(100% - 96px);
    margin: 0 auto;
    min-height: 280px;
    background: linear-gradient(180deg, #042b7c 0%, #046cbc 100%);
    border-radius: 30px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 76px 40px;
    text-align: center;
}

/* Decorative pattern (swirl effect) */
.smytec-article-header__pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 440px;
    height: 459px;
    background-image: url(../images/head-bkg.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    pointer-events: none;
}

.smytec-article-header__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.smytec-article-header__category {
    display: inline-block;
    background: #046cbc;
    /* Solid blue for tag in this context */
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.smytec-article-header__category span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.smytec-article-header__title {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: Poppins;
    font-weight: 300;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
}

/* Base structural adjustments for single page */
#left-area {
    padding-top: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .smytec-article-header {
        padding: 40px 20px;
        min-height: auto;
        border-radius: 20px;
    }

    .smytec-article-header__title {
        font-size: 28px !important;
    }

    .smytec-article-header__category {
        margin-bottom: 16px;
    }
}