.cpg-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cpg-item {
    position: relative;
    box-sizing: border-box;
    text-align: left;
}

.cpg-image img {
    width: 100%;
    height: auto;
}

.cpg-text-row {
    display: flex;
    justify-content: space-between; /* Paragraph on left, icon on right */
    align-items: center; /* Align vertically */
    margin-top: 10px;
}

.cpg-paragraph {
    font-size: 14px;
    color: #000;
    margin: 0;
    flex: 1; /* Allow paragraph to take available space */
}

.cpg-icon {
    width: 30px;  /* Adjust size */
    height: auto;
    margin-left: 10px; /* Space between text and icon */
    opacity: 0.8;
}

.cpg-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Semibold */
    font-size: 16px;
    margin: 10px 0;
}

.cpg-divider {
    width: 100%;
    margin: 10px auto;
}

.cpg-paragraph {
     font-family: 'Montserrat', sans-serif;
    font-size: 14px;
     font-weight: 400;
    color: #000;
}

@media only screen and (max-width: 1200px) {
  .cpg-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media only screen and (max-width: 768px) {
  .cpg-gallery {
    grid-template-columns: 1fr !important;
  }
}

