#offset_third .ottp-wrapper {
    width: 100%;
}

#offset_third .ottp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

#offset_third .ottp-item {
    display: flex;
    flex-direction: column;
}

#offset_third .ottp-thumb {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

#offset_third .ottp-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover; 
    display: block;
    transition: transform .35s ease;
}

#offset_third .ottp-item:hover .ottp-thumb img {
    transform: scale(1.05);
}

#offset_third .ottp-title {
    margin: .75rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

#offset_third .ottp-title a {
    color: inherit;
    text-decoration: none;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
