.sq-container-d33dca04 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sq-item {
    background-color: #1b2620; /* Dark mossy green */
    border: 1px solid #d4af37; /* Metallic gold */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.sq-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sq-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 2px solid #d4af37;
}

.sq-content-wrap {
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.sq-quote-mark {
    color: #d4af37;
    font-size: 40px;
    line-height: 1;
    font-family: serif;
    opacity: 0.6;
    margin-bottom: 10px;
}

.sq-quote-mark-right {
    margin-top: 10px;
    margin-bottom: 0;
    align-self: flex-end;
}

.sq-quote-text {
    color: #f5f5f5;
    font-size: 16px;
    font-style: italic;
    margin: 0;
    padding: 0 10px;
    line-height: 1.6;
}

.sq-author-name {
    color: #d4af37;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sq-container-d33dca04 {
        grid-template-columns: 1fr;
    }
}
