.global-campaign-widget {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    font-family: "Neutrif Studio", sans-serif;
}

/* ========== TOP ROW ========== */
.gcw-top-row {
    background-color: #ffe6e6;
    /* Soft pink background */
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    position: relative;
}

.gcw-raised,
.gcw-goal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gcw-raised span {
    align-self: start;
}

.gcw-goal span {
    align-self: end;
}

.gcw-raised-amount,
.gcw-goal-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    /* Black amounts */
}

.gcw-raised-label,
.gcw-goal-label {
    font-size: 0.85rem;
    color: #eb5757;
    /* Reddish label text */
    font-weight: bolder;
}

/* Separator line between RAISED and GOAL */
.gcw-separator {
    flex: 1;
    /* Let it stretch between the columns */
    max-width: 150px;
    /* Or any width you prefer */
    height: 1px;
    background-color: #000;
    /* Black line */
    margin: 0 0.75rem;
    transform: translateY(-11px);
}

/* ========== BOTTOM ROW ========== */
.gcw-bottom-row {
    text-align: center;
    margin-top: 0.5rem;
}

.gcw-matching-amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    /* Black text for the final total */
}

.gcw-matching-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #4f4f4f;
    /* Gray text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.global-campaign-widget-fullwidth {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 15px;
    font-family: "Neutrif Studio", sans-serif;
}

/* Top Row Styles */
.gcw-fw-top-row {
    background-color: #ffffff;
    /* Beige background */
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px 20px 0 0;
}

.gcw-fw-raised,
.gcw-fw-goal {
    display: flex;
    flex-direction: column;
}

.gcw-fw-raised-amount,
.gcw-fw-goal-amount {
    font-size: 1.9rem;
    font-weight: bold;
    color: #000;
}

.gcw-fw-raised-label {
    font-size: 0.9rem;
    color: #eb5757;
    font-weight: bold;
    align-self: flex-start;
    margin-top: 0.1rem;
}

.gcw-fw-goal-label {
    font-size: 0.9rem;
    color: #eb5757;
    font-weight: bold;
    align-self: flex-end;
    margin-top: 0.1rem;
}

/* Separator line */
.gcw-fw-separator {
    flex: 1;
    height: 1px;
    background-color: #000;
    margin: 0 1rem;
    transform: translateY(-12px);
}

/* Bottom Row Styles */
.gcw-fw-bottom-row {
    background-color: #fce4df;
    /* Soft pink */
    margin-top: -10px;
    /* slightly overlap with top row */
    padding: 0.6rem 1rem;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.gcw-fw-matching-amount,
#gcw-fw-total-donations,
#gcw-fw-days-remaining {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.gcw-fw-bottom-details {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
}

.gcw-fw-progress-container {
	position: relative;
	height: 2px;
	flex: 1;
	margin: 0 1rem;
	background-color: #ccc; /* grey remaining bar */
	transform: translateY(-5px);
}

.gcw-fw-progress-bar-left {
	height: 100%;
	background-color: #eb5757; /* red completed portion */
	width: 0%; /* starts from zero, dynamically updated */
	position: absolute;
	left: 0;
	top: 0;
}

.gcw-fw-progress-icon {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20px; /* adjust size accordingly */
	height: 20px;
	left: 0%; /* dynamically set by JS */
	z-index: 10;
}

/* ===============================
   MOBILE PORTRAIT FIXES (≤600px)
   =============================== */
@media (max-width: 600px) {
  .global-campaign-widget-fullwidth {
    margin-top: 15px;
    padding: 12px;
  }

  .gcw-fw-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0.4rem 0.8rem;
  }

  .gcw-fw-matching-amount,
  #gcw-fw-total-donations,
  #gcw-fw-days-remaining,
  .gcw-fw-bottom-details {
    font-size: 0.9rem;
    text-align: center;
  }
}
