.single-post .hero-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 60px;
}

.single-post .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.single-post .hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.single-post .hero-title {
    font-size: 48px;
    margin: 0 0 20px 0;
    font-weight: bold;
    line-height: 1.2;
}

.single-post .hero-subtitle {
    font-size: 20px;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
}

.single-post .hero-meta {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.single-post .hero-meta a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.single-post .hero-meta a:hover {
    opacity: 0.8;
}

/* Content Container */
.single-post .content-area {
    margin: 60px auto;
    padding: 0 20px;
}

.single-post .site-main {
    background: white;
}

/* Article */
.single-post article {
    margin-bottom: 60px;
}

.single-post .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.single-post .entry-content blockquote {
    border-left: 4px solid #007cba;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* Footer Meta */
.single-post .entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.single-post .cat-links,
.single-post .tags-links {
    display: inline-block;
    margin-right: 20px;
}

.single-post .cat-links a,
.single-post .tags-links a {
    color: #007cba;
    text-decoration: none;
    transition: color 0.3s;
}

.single-post .cat-links a:hover,
.single-post .tags-links a:hover {
    color: #005a87;
}

.single-post .edit-link a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .single-post .hero-banner {
        min-height: 350px;
    }

    .single-post .hero-title {
        font-size: 32px;
    }

    .single-post .hero-subtitle {
        font-size: 16px;
    }

    .single-post .hero-content {
        padding: 20px;
    }

    .single-post .content-area {
        margin: 40px auto;
        padding: 0 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Brand Logo Slider
=========================== */
:root{
    --slide-width:220px;
    --slide-height:100px;
    --animation-speed:35s;
}

.ahst-brand-logo-marquee{
    display:flex;
    overflow:hidden;
    position:relative;
    width:100%;
    align-items:center;
}

.ahst-brand-logo-track{
    display:flex;
    flex-shrink:0;
    animation:ahst-scroll var(--animation-speed) linear infinite;
}

.ahst-brand-logo-marquee.pause-on-hover:hover
.ahst-brand-logo-track{
    animation-play-state:paused;
}

.ahst-brand-logo-item{
    width:var(--slide-width);
    min-width:var(--slide-width);
    height:var(--slide-height);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.ahst-brand-logo-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
}

.ahst-brand-logo-link{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
}

.ahst-brand-logo-img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

@keyframes ahst-scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}

@media(max-width:1024px){
    :root{
        --slide-width:180px;
        --slide-height:80px;

    }
}

@media(max-width:767px){
    :root{
        --slide-width:130px;
        --slide-height:60px;
        --animation-speed:25s;
    }
}