/* Ads Showcase Widget Styles */
.ads-showcase-b6b8834f {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #ffffff;
    width: 100%;
}

.ads-showcase-b6b8834f * {
    box-sizing: border-box;
}

.ads-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.ads-header-area {
    margin-bottom: 50px;
}

.ads-pre-title {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ads-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.ads-title span {
    font-style: italic;
    color: #f2a93b;
}

.ads-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    opacity: 0.9;
}

/* Layout Grid */
.ads-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.ads-meta-header {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    opacity: 0.8;
}

.ads-dashboard-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 25px;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.ads-dashboard-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Stats grid with clean border line around results and clipping */
.ads-stats-grid {
    --grid-border-width: 2px;
    --grid-border-color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-style: solid;
    border-color: var(--grid-border-color);
    border-width: var(--grid-border-width);
    border-radius: 4px;
    overflow: hidden; /* Clips the child components correctly inside the rounded border */
}

.ads-stat-card {
    padding: 30px 20px;
    text-align: center;
    border-style: solid;
    border-width: 0px;
    border-color: var(--grid-border-color);
}

/* Clean divider lines instead of double borders on cards */
.ads-stat-card:nth-child(odd) {
    border-right-width: var(--grid-border-width);
}

.ads-stat-card:nth-child(1), .ads-stat-card:nth-child(2) {
    border-bottom-width: var(--grid-border-width);
}

.stat-val {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #f2a93b;
}

.stat-lbl {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
}

/* Right Column Benefits */
.benefits-heading {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
    color: #f2a93b;
}

.benefits-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-arrow {
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
    color: #f2a93b;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #f2a93b;
}

.benefit-desc {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
    opacity: 0.9;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .ads-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ads-title {
        font-size: 36px;
    }
}
