.bullet-points ul {
    list-style-type: disc;
    color: white;
    padding-left: 50px;
}

.bullet-points li {
    margin-bottom: 15px;
}

.number-points ul {
    list-style-type: decimal;
    color: white;
    padding-left: 50px;
}

.number-points li {
    margin-bottom: 15px;
}

.text-baccarat-1 {
    background-color: #9FE12A;
    color: #000;
    padding: 10px;
    border-radius: 10px;
}

.editorial-card {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(180, 255, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;    
}

.editorial-image {
    width: 100%;
    aspect-ratio: 1000/580;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.editorial-text {
    padding: 15px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.editorial-text p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: bold;
}

.editorial-text-like {
    padding: 10px 15px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.editorial-text-like:hover {
    background-color: rgba(158, 228, 7, 0.1);
}

.editorial-text-like h6 {
    color: #9ee407;
    margin: 0;
    font-weight: bold;
    font-size: 24px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.BCR-content-img {
    margin-bottom: 20px; /* ระยะห่างระหว่างรูป */
}

.BCR-content-img img {
    width: 100%; /* ให้รูปเต็มความกว้างของ container */
    height: auto; /* รักษาอัตราส่วนของรูปภาพ */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* เงา (ถ้าต้องการ) */
    transition: transform 0.3s ease; /* animation เมื่อ hover (ถ้าต้องการ) */
}

/* effect hover (ถ้าต้องการ) */
.BCR-content-img img:hover {
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .editorial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }
}
