/* Scoped premium dark-theme styles for Arcavio Blog Insights */
.blog-premium-section {
    background-color: #05070e !important;
    position: relative;
    z-index: 1;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

/* Ambient background light spots */
.blog-premium-section::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -10%;
    width: 45%;
    height: 55%;
    background: radial-gradient(circle, rgba(68, 97, 223, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
}

.blog-premium-section::after {
    content: "";
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(69, 224, 255, 0.12) 0%, transparent 75%);
    z-index: -1;
    pointer-events: none;
    filter: blur(90px);
}

/* Eyebrow badge */
.premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #45e0ff;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.premium-eyebrow i {
    font-size: 8px;
}

/* Glassmorphism Blog Card Layout */
.tv-blog-card {
    background: rgba(13, 20, 38, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tv-blog-card:hover {
    border-color: rgba(69, 224, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(69, 224, 255, 0.05);
}

.blog-img {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tv-blog-card:hover .blog-img img {
    transform: scale(1.04);
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(68, 97, 223, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta .meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta .meta-item i {
    color: #45e0ff;
}

.blog-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color .2s ease;
}

.blog-title a:hover {
    color: #45e0ff;
}

.blog-summary {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
}

/* Styled Read More action button */
.blog-content .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-content .theme-btn:hover {
    background: #4461DF;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(68, 97, 223, 0.25);
}

.blog-content .theme-btn svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.blog-content .theme-btn:hover svg path {
    fill: #ffffff;
}
