/* Container for the club signup button group */
.wc-block-checkout__club-signup-container {
	display: flex;
  flex-direction: column;
  flex-wrap: wrap;
	gap: 1rem;
}


/* Base styles for each club signup option */
.wc-block-checkout__club-signup-option {
	display: flex;
	flex-direction: column;
  gap: 1rem;
	align-items: center;
	justify-content: center;
  min-height: 100px;
	padding: 1rem;
	border: 1px solid hsla(0, 0%, 7%, 0.8);
	border-radius: 4px;
  font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}

.wc-block-checkout__club-signup-option p {
  margin: 0px;
}

@media (min-width: 1024px) {
  .wc-block-checkout__club-signup-container {
  	display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .wc-block-checkout__club-signup-option {
    width: calc(50% - 2.7rem);
  }
}



/* Selected state styling */
.wc-block-checkout__club-signup-option--selected {
	background-color: #007cba;
	border-color: #007cba;
	color: #fff;
}

/* Option icon styling */
.wc-block-checkout__club-signup-option-icon {
	margin-bottom: 0.5rem;
	fill: currentColor;
}

/* Option title styling */
.wc-block-checkout__club-signup-option-title {
	font-size: 1rem;
	font-weight: bold;
}

.oncloudwine-club-selected .wc-block-components-checkbox.wc-block-components-payment-methods__save-card-info {
  opacity: 0.4;
}

.wc-block-checkout__club-signup-option-excerpt {
  font-size: 14px;
  text-align: center;
}

.wc-block-checkout__club-signup-option-link {
  text-decoration: underline;
}
