.cl-2b1d23e5 {
    font-family: sans-serif;
    color: #333;
}

.cl-main-title {
    background-color: #e5e5e5;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin: 40px 0 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 24px;
}

.cl-item-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.cl-item-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
}

.cl-item-note {
    font-size: 14px;
    margin-top: 5px;
    color: #cc0000;
}

.cl-full-items .cl-item {
    margin-bottom: 15px;
}

.cl-divider-horizontal {
    height: 1px;
    background-color: #ddd;
    margin: 15px 0;
}

.cl-grid-container {
    position: relative;
}

.cl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 20px;
    position: relative;
}

.cl-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #ddd;
    transform: translateX(-50%);
}

.cl-grid .cl-item {
    margin-bottom: 0; /* Removed extra bottom margin from items since grid handles gap */
}

.cl-bottom-subtitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.cl-photo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cl-photo-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cl-photo-content {
    flex: 1;
}

.cl-photo-img {
    flex: 0 0 200px;
}

.cl-photo-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #ccc;
    object-fit: cover;
}

.cl-photo-placeholder {
    width: 100%;
    height: 120px;
    border: 1px solid #aaa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

@media (max-width: 1024px) {
    .cl-photo-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cl-photo-img {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .cl-grid {
        grid-template-columns: 1fr;
    }
    
    .cl-grid::after {
        display: none;
    }
}
