.home-interview__container {
    display: grid;
    gap: 1.5rem;
    padding-top: 3rem;
}

.home-interview__image {
    height: 200px;
    background-size: cover;
    background-position: top center;
}

@media (min-width: 1200px) {
    .home-interview__image {
        height: 300px;
    }
}

.home-interview__category {
    background-color: var(--e-global-color-primary);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.home-interview__title {
    font-size: 1.25rem;
    font-weight: 900 !important;
    text-decoration: none !important;
    color: #333333 !important;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    display: block;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-interview__content {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

@media (min-width: 1200px) {
    .home-interview__container {
        grid-template-columns: 1fr 1fr;
    }
}
