/* ── Segment Explorer Block ── */
/* .industry-segment-explorer-section {
    padding: 40px 0;
} */
/* .industry-segment-explorer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */
.industry-segment-explorer-section .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.industry-segment-explorer-section .section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

/* Grid */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */

.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: underline;
}
.segments-grid .arrow-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line, #e4e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue, #1a4fad);
    background: #fff;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    cursor: pointer;
}
.segments-grid .arrow-circle svg {
    width: 16px;
    height: 16px;
}
.segments-grid .seg-card:hover  .arrow-circle{
    background: var(--blue, #1a4fad);
    color: #fff;
    transform: translateX(3px);
}
.seg-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    text-decoration: none !important;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    justify-content: space-between;
    position: relative;
    min-height: 272px;
    font-family: 'Cormorant Garamond', serif !important;
}
.seg-card-vid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .60) 12%, rgba(255, 255, 255, .18) 26%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, .42) 66%, rgba(255, 255, 255, .82) 80%, rgba(255, 255, 255, .97) 100%);
}
.seg-content-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.seg-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    transform: translateY(-4px);
    text-decoration: none !important;
}
.video-block{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 12px;
}
.video-block video{
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.0);
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
    background: #f4f8ff;
    filter: saturate(.55) brightness(1.0);
    transition: filter .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
}
/* Icon area */
.seg-illu.img-block, .seg-illu.span-block a {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f6ff;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 20px;
}
.seg-illu.img-block img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

/* Name */
.seg-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.35;
    text-align: left;
}
.seg-card:hover{
    border-color: rgba(96, 165, 250, .7);
    box-shadow: 0 32px 64px -14px rgba(10, 60, 140, .2), 0 10px 28px rgba(10, 60, 140, .1), 0 0 0 1.5px rgba(96, 165, 250, .35) inset;
}
.seg-card:hover .seg-name{
color: #1d6fa8;
    transform: translateY(-1px);
}
/* Responsive */
@media (max-width: 960px) {
    .segments-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
    .segments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .segments-grid { grid-template-columns: 1fr 1fr; }
}
