:root {
  --fc-widget-background: #fff;
  --fc-widget-border-color: #e0e0e0;
  --fc-widget-cta-background: #267fd9;
  --fc-widget-cta-color: #fff;
  --fc-widget-spacing-x: 20px;
  --fc-widget-spacing-y: 30px;
}
.fc-widget {
  background-color: var(--fc-widget-background);
  border: 1px solid var(--fc-widget-border-color);
  border-radius: 6px;
  max-width: 100%;
  padding: var(--fc-widget-spacing-y) var(--fc-widget-spacing-x);
  position: relative;
}
.fc-widget:after {
  color: var(--fc-widget-border-color);
  content: 'Featured';
  font-size: 14px;
  line-height: 1;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 10px;
}
.fc-widget h4, .fc-widget p {
  margin: 0 0 var(--fc-widget-spacing-x) !important;
  padding: 0 !important;
}
.fc-widget h4 {
  font-size: 1.5em;
}
.fc-widget h4 a {
  color: inherit;
  text-decoration: none;
}
.fc-widget img {
  display: block;
  margin-bottom: var(--fc-widget-spacing-x);
  max-width: 100%;
}
.fc-widget-button {
  background-color: var(--fc-widget-cta-background);
  border: 1px solid transparent;
  border-radius: 0;
  box-sizing: border-box;
  color: var(--fc-widget-cta-color);
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: .9rem;
  line-height: 1;
  padding: .85em 1em;
  text-align: center;
  text-decoration: none;
  transition: background-color .25s ease-out, color .25s ease-out;
  vertical-align: middle;
  width: 100%;
}
.fc-widget-button:focus, .fc-widget-button:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .fc-widget {
    align-items: center;
    display: flex;
  }
  .fc-widget p:last-child {
    margin-bottom: 0 !important;
  }
  .fc-widget-button {
    width: auto;
  }
  .fc-widget-text {
    flex: 0 60%;
    width: 60%;
  }
  .fc-widget-image {
    align-items: center;
    display: flex;
    flex: 0 40%;
    flex-direction: column;
    margin-left: var(--fc-widget-spacing-x);
    width: 40%;
  }
}
