.campania-progress-wrapper {
    width: 100%;
    margin: 24px 0 8px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fb 100%);
    border: 1px solid #cde0f5;
    border-radius: 12px;
    box-sizing: border-box;
}

.campania-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.campania-progress-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a4d80;
    margin: 0;
}

.campania-progress-percentage {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0d5fb3;
    line-height: 1;
}

.campania-progress-bar-container {
    position: relative;
    width: 100%;
    height: 22px;
    background: #e0e9f2;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.campania-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2a7fd1 0%, #1e5fa3 50%, #0d4a87 100%);
    border-radius: 11px;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px rgba(42, 127, 209, 0.35);
}

.campania-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    border-radius: 11px 11px 0 0;
}

.campania-progress-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.campania-progress-donated {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.campania-progress-donated strong {
    color: #0d5fb3;
    font-weight: 700;
    font-size: 16px;
}

.campania-progress-goal {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    color: #555;
}

.campania-progress-goal strong {
    color: #1a4d80;
    font-weight: 600;
}

@media (max-width: 600px) {
    .campania-progress-wrapper {
        padding: 16px;
        margin: 18px 0 4px 0;
    }
    .campania-progress-percentage {
        font-size: 22px;
    }
    .campania-progress-title {
        font-size: 14px;
    }
}

.campania-donate-button-wrap {
    display: flex;
    justify-content: flex-end;
    margin: 6px 0 24px 0;
}

.campania-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #1e8449 100%);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(46, 204, 113, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    border: none;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

.campania-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(46, 204, 113, 0.45);
    filter: brightness(1.05);
}

.campania-donate-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.35);
}

.campania-donate-btn:focus-visible {
    outline: 3px solid rgba(46, 204, 113, 0.35);
    outline-offset: 2px;
}

.campania-donate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    padding: 1px;
}

.campania-donate-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

@media (max-width: 600px) {
    .campania-donate-button-wrap {
        justify-content: center;
        margin: 6px 0 20px 0;
    }
    .campania-donate-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}
