.oston-carousel-section {
    position: relative;
    padding: 40px 0;
}

/* Wrapper */
.oston-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar Chrome/Safari */
.oston-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

/* Inner flex */
.oston-carousel {
    display: flex;
    gap: 24px;
    scroll-behavior: smooth;
}

/* Card */
.oston-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.oston-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.oston-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.oston-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.oston-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0b3d2e;
}

.oston-card-content p {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

/* Progress */
.oston-progress {
    background: #eee;
    height: 15px;
    border-radius: 20px;
    overflow: hidden;
    margin: 18px 0 10px;
}

.oston-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0b3d2e, #B19644);
    transition: width 1s ease;
}

.oston-amount {
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Button */
.oston-donate-btn {
    display: inline-block;
    text-align: center;
    background: #0b3d2e;
    color: #fff;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.oston-donate-btn:hover {
    background: #B19644;
}

/* Arrows */
.oston-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 10;
}

.oston-carousel-arrow.left { left: -20px; }
.oston-carousel-arrow.right { right: -20px; }

/* Tablet */
@media (max-width: 1024px) {
    .oston-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Видно кусочек следующей карточки */
    .oston-card {
        flex: 0 0 85%;
    }

    .oston-carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .oston-carousel-arrow.left {
        left: 5px;
    }

    .oston-carousel-arrow.right {
        right: 5px;
    }
}
/* =====================================
   SINGLE CAMPAIGN PAGE LAYOUT
===================================== */

.oston-single-layout {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

/* LEFT COLUMN */
.oston-single-left {
    width: 100%;
    padding-left: 40px;
}

/* RIGHT COLUMN */
.oston-single-right {
    width: 100%;
    padding-right: 40px;
}

/* Title */
.oston-single-title {
    font-size: 34px;
    margin-bottom: 20px;
}

/* Text */
.oston-single-content {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Image */
.oston-single-image img {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
}

/* Hide shortcode duplicated parts */
.oston-single-right .oston-layout-gofundme {
    display: block !important;
}

.oston-single-right .oston-campaign-media,
.oston-single-right .oston-campaign-main {
    display: none !important;
}

/* Donate box */
.oston-single-right .oston-donate-box {
    max-width: 420px;
    width: 100%;
    margin-left: auto;
    position: sticky;
    top: 120px;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 980px) {

    .oston-single-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .oston-single-left {
        padding: 0 18px;
        order: 1;
    }

    .oston-single-right {
        padding: 0 18px;
        order: 2;
    }

    .oston-single-right .oston-donate-box {
        position: static;
        max-width: 100%;
        margin: 0;
    }
}
.oston-amount {
    color: #6b7280; /* normal text gray */
    font-weight: 500;
}

.oston-amount .oston-money {
    color: #B19644; /* your gold */
    font-weight: 700;
}
.oston-share {
    margin-left: 8px;
    color: #6b7280;
    cursor: pointer;
    font-weight: 500;
    transition: color .2s ease;
}

.oston-share:hover {
    color: #B19644;
    text-decoration: underline;
}