.danny-reviews,
.danny-reviews * {
    box-sizing: border-box;
}

.danny-reviews {
    max-width: 1140px;
    margin: 35px auto;
    padding: 34px 28px;
    background: #0d172d;
    color: #ffffff;
    border-radius: 14px;
    font-family: Arial, sans-serif;
}

.danny-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.danny-reviews-title {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 34px;
    line-height: 1.2;
    text-transform: none !important;
}

.danny-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 13px 22px;
    color: #ffffff !important;
    background: #27a9e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
}

.danny-review-button:hover {
    color: #ffffff !important;
    background: #168bbe;
    transform: translateY(-2px);
}

.danny-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.danny-review-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 270px;
    padding: 22px;
    background: #172033;
    border: 1px solid #2b3953;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.danny-review-stars {
    margin-bottom: 16px;
    color: #ffb542;
    font-size: 23px;
    letter-spacing: 2px;
}

.danny-review-text {
    display: -webkit-box;
    margin: 0 0 20px !important;
    overflow: hidden;
    color: #e4e9f1 !important;
    font-size: 16px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    line-clamp: 7;
}

.danny-review-author {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #2b3953;
}

.danny-review-author strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 16px;
}

.danny-review-author span {
    color: #aeb9ca;
    font-size: 13px;
}

.danny-reviews-mobile-help {
    display: none;
}

@media (max-width: 980px) {
    .danny-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .danny-reviews {
        margin: 24px 0;
        padding: 24px 14px;
        border-radius: 10px;
    }

    .danny-reviews-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 22px;
        text-align: center;
    }

    .danny-reviews-title {
        font-size: 25px;
    }

    .danny-review-button {
        width: 100%;
        text-align: center;
    }

    .danny-reviews-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 2px 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .danny-review-card {
        flex: 0 0 88%;
        min-height: 265px;
        padding: 20px;
        scroll-snap-align: center;
    }

    .danny-reviews-mobile-help {
        display: block;
        margin: 10px 0 0;
        color: #aeb9ca;
        font-size: 13px;
        text-align: center;
    }
}