/* Post Card Image */
.post-card__inner.type-industry .post-card__image,
.post-card__inner.type-industry .post-card__image img {
    aspect-ratio: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--wp--custom--global--border--radius--base);
}

/* Post Card Title */
.post-card__inner.type-industry .post-card__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    b {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
        min-width: 0;
        font-weight: inherit;
    }

    &:after {
        content: "\ea1c";
        font-family: 'icomoon';
        font-size: 18px;
        line-height: 1;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        padding: 0;
        background-color: var(--wp--preset--color--base-variant);
        color: var(--wp--preset--color--primary-light);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease, background-color 0.3s ease;
    }
}

/* Hover Styles */
.post-card:hover .post-card__title:after {
    background: var(--wp--preset--color--primary-light);
    color: var(--wp--preset--color--base);
}