.columns > div {
  display: flex;
  flex-direction: column;
}

.columns img {
  width: 100%;
}

.columns > div > .columns-img-col img {
  display: block;
}

.primary-bg-section .columns > div > .columns-img-col img {
  padding: 0 3rem;
}

@media (width >= 1024px) {
  .columns > div {
    align-items: center;
    flex-direction: unset;
    gap: 2rem;
  }

  .columns.top-aligned-columns > div {
    align-items: flex-start;
  }

  .columns > div > div {
    flex: 1;
    order: unset;
  }
}

.columns.numbered-columns > div {
  position: relative;
}

.columns.reverse-order > div {
  flex-direction: column-reverse;
}

.columns.col-white-bg {
  background-color: var(--white);
}

.columns.nourishing-food-criteria > div >.nourishing-food-criteria-column {
  background-color: #00AEEF;
  color: #fff;
  padding: 1rem;
}

.columns.nourishing-food-criteria > div > .nourishing-food-criteria-column :is(h1, h2, h3, h4, h5, h6, p, a) {
  color: #fff;
}

.columns.col-white-bg.extra-padding {
  padding: 0.5rem 1.5rem;
}

.pre-footer-section .columns.col-white-bg {
  max-width: 64.75rem;
  margin: 0 auto;
  padding: 3.125rem 3rem 2.125rem;
  border-radius: 1.3125rem;
}

.pre-footer-section .columns.col-white-bg h4,
.pre-footer-section .columns.col-white-bg p {
  margin-top: 0;
}

.pre-footer-section .columns.col-white-bg > div {
  align-items: flex-start;
}

.columns.light-text {
  color: var(--white);
}

.columns.light-text h1,
.columns.light-text h2,
.columns.light-text h3,
.columns.light-text h4,
.columns.light-text h5,
.columns.light-text h6,
.columns.light-text h1 em,
.columns.light-text h2 em,
.columns.light-text h3 em,
.columns.light-text h4 em,
.columns.light-text h5 em,
.columns.light-text h6 em {
  color: var(--white);
}

.columns.light-text .button.default,
.columns.light-text a {
  color: var(--white);
}

.columns.light-text .button.default:hover,
.columns.light-text .button.default:focus,
.columns.light-text a:hover,
.columns.light-text a:focus {
  color: var(--light-grey);
}

.columns.light-text .button.default .icon img,
.columns.light-text .button.secondary .icon img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(1839%) hue-rotate(309deg) brightness(102%) contrast(104%);
}

.columns.light-text .button.default:hover .icon img,
.columns.light-text .button.default:focus .icon img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(1%) hue-rotate(153deg) brightness(90%) contrast(85%);
}

.columns.large-text p {
  font-weight: 300;
  margin: 2rem 0;
}

.columns.logo-grid > div > div:first-child {
  grid-gap: .625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
  margin: 0 auto;
  padding: 0;
  order: 2;
  max-width: 30rem;
}

.columns.logo-grid > div > div:first-child p {
  margin: 0;
  padding: .625rem;
  position: relative;
  text-align: center;
}

.columns.logo-grid img {
  width: 85%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.columns.logo-grid .icon img {
  width: 100%;
  height: 100%;
}

.columns.table-style > div {
  gap: 0;
  align-items: stretch;
  word-break: break-word;
  border-style: solid;
  border-width: 0 2px 2px;
  border-color: var(--dark-medium-grey);
}

.columns.table-style > div:first-child {
  border-top-width: 2px;
}

.columns.table-style > div > div {
  border-top: 2px solid var(--dark-medium-grey);
  padding: 1rem;
}

.columns.table-style > div > div:first-child {
  border-top: 0;
}

.columns.table-style strong {
  font-weight: 400;
}

.columns.one-fourths-column > div > .columns-img-col,
.columns.one-thirds-column > div > .columns-img-col,
.columns.two-thirds-column > div > .columns-img-col {
  width: 225px;
  margin: 0 auto;
}

@media (width >= 1024px) {
  .columns.reverse-order > div {
    flex-direction: unset;
  }

  .columns.col-white-bg.extra-padding {
    padding: 3.5rem 5.5rem;
  }

  .columns.table-style > div > div {
    border-left: 2px solid var(--dark-medium-grey);
    border-top: 0;
  }
  
  .columns.table-style > div > div:first-child {
    border-left: 0;
  }

  .columns.large-text p,
  .columns.large-text li {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.0001rem;
  }

  .columns.one-thirds-column > div > div:first-child {
    flex-basis: 33.3333%;
  }

  .columns.one-thirds-column > div > div:last-child {
    flex-basis: 66.6666%;
  }

  .columns.two-thirds-column > div > div:first-child {
    flex-basis: 66.6666%;
  }

  .columns.two-thirds-column > div > div:last-child {
    flex-basis: 33.3333%;
  }

  .columns.one-fourths-column > div > div:first-child {
    flex-basis: 25%;
  }

  .columns.one-fourths-column > div > div:last-child {
    flex-basis: 75%;
  }

  .columns.three-fourths-column > div > div:first-child {
    flex-basis: 75%;
  }

  .columns.three-fourths-column > div > div:last-child {
    flex-basis: 25%;
  }

  .columns.one-fourths-column .columns-img-col img {
    padding: 0 3rem;
  }

  .columns.one-fourths-column > div > .columns-img-col,
  .columns.one-thirds-column > div > .columns-img-col,
  .columns.two-thirds-column > div > .columns-img-col {
    width: 100%;
    margin: unset;
  }

  .primary-bg-section .columns > div,
  .secondary-bg-section .columns > div,
  .tertiary-bg-section .columns > div,
  .accent-1-bg-section .columns > div,
  .accent-2-bg-section .columns > div,
  .accent-3-bg-section .columns > div,
  .accent-4-bg-section .columns > div {
    gap: 5rem;
  }

  .columns.logo-grid > div {
    gap: 0;
  }

  .columns.logo-grid > div > div:first-child {
    grid-gap: .625rem;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin: 0 auto;
    padding: 0 5.3125rem;
    order: 0;
    max-width: none;
  }
}

/* Timeline */
.columns.timeline {
  position: relative;
}

.columns.timeline > div {
  flex-direction: row;
  margin-bottom: 3.125rem;
  gap: .5rem;
}

.columns.timeline > div > div {
  scroll-margin-top: 6.75rem;
}

.columns.timeline::after {
  content: "";
  display: block;
  background-color: var(--light-grey);
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 1.875rem;
}

.columns.timeline p {
  margin-top: 0;
}

.columns.timeline h5 {
  margin: 0 0 .5rem;
  color: var(--black);
  font-size: var(--body-font-size);
  line-height: 1.5625rem;
}

.columns.timeline > div.timeline-active > div:first-child {
  color: var(--primary-color);
}

.columns.timeline p:first-child {
  margin: 0;
}

/* timeline date */
.columns.timeline > div > div:first-child {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--dark-medium-grey);
  position: relative;
  flex: 0 0 4rem;
  text-align: center;
  z-index: 1;
}

.columns.timeline > div > div:first-child p {
  background-color: var(--white);
}

/* timeline card */
.columns.timeline > div > div:last-child {
  background-color: #f4f4f4;
  padding: 0;
  width: 100%;
  position: relative;
}

.columns.timeline > div > div:last-child p,
.columns.timeline > div > div:last-child h5 {
  display: none;
}

.columns.timeline > div.timeline-active > div:last-child,
.adobe-ue-edit .columns.timeline > div > div:last-child {
  padding: 1.5rem 1.5rem .5rem;
}

.columns.timeline > div.timeline-active > div:last-child p,
.columns.timeline > div.timeline-active > div:last-child h5,
.adobe-ue-edit .columns.timeline > div > div:last-child p,
.adobe-ue-edit .columns.timeline > div > div:last-child h5 {
  display: block;
}

.columns.timeline img {
  display: block;
  width: auto;
  margin: 0 auto 1rem;
}

.adobe-ue-edit .columns.timeline .timeline-btn {
  display: none;
}

.columns.timeline .timeline-btn {
  border: 0;
  padding: 1rem 1.5rem 1rem 3rem;
  display: block;
  width: 100%;
  text-align: left;
  color: var(--dark-grey);
  text-transform: none;
  transition: 0s;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 9' width='15' height='9'%3E%3Cpath d='M14.8002 1.99531L7.98236 8.99453C7.91904 9.0596 7.84385 9.11123 7.76108 9.14645C7.67831 9.18168 7.5896 9.1998 7.5 9.1998C7.4104 9.1998 7.32168 9.18168 7.23892 9.14645C7.15615 9.11123 7.08096 9.0596 7.01764 8.99453L0.199801 1.99531C0.0718705 1.86398 -1.34797e-09 1.68585 0 1.50012C1.34796e-09 1.31438 0.0718705 1.13625 0.199801 1.00492C0.327731 0.873587 0.501242 0.799805 0.682163 0.799805C0.863084 0.799805 1.03659 0.873587 1.16452 1.00492L7.5 7.50982L13.8355 1.00492C13.8988 0.939891 13.974 0.888306 14.0568 0.853112C14.1395 0.817918 14.2283 0.799805 14.3178 0.799805C14.4074 0.799805 14.4961 0.817918 14.5789 0.853112C14.6617 0.888306 14.7369 0.939891 14.8002 1.00492C14.8635 1.06995 14.9138 1.14715 14.9481 1.23212C14.9824 1.31708 15 1.40815 15 1.50012C15 1.59208 14.9824 1.68315 14.9481 1.76811C14.9138 1.85308 14.8635 1.93028 14.8002 1.99531Z' /%3E%3C/svg%3E") no-repeat left 1.5rem center;
}

.columns.timeline .timeline-active .timeline-btn {
  padding: 0;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 9' width='15' height='9'%3E%3Cpath fill='%23c91245' d='M14.8002 1.99531L7.98236 8.99453C7.91904 9.0596 7.84385 9.11123 7.76108 9.14645C7.67831 9.18168 7.5896 9.1998 7.5 9.1998C7.4104 9.1998 7.32168 9.18168 7.23892 9.14645C7.15615 9.11123 7.08096 9.0596 7.01764 8.99453L0.199801 1.99531C0.0718705 1.86398 -1.34797e-09 1.68585 0 1.50012C1.34796e-09 1.31438 0.0718705 1.13625 0.199801 1.00492C0.327731 0.873587 0.501242 0.799805 0.682163 0.799805C0.863084 0.799805 1.03659 0.873587 1.16452 1.00492L7.5 7.50982L13.8355 1.00492C13.8988 0.939891 13.974 0.888306 14.0568 0.853112C14.1395 0.817918 14.2283 0.799805 14.3178 0.799805C14.4074 0.799805 14.4961 0.817918 14.5789 0.853112C14.6617 0.888306 14.7369 0.939891 14.8002 1.00492C14.8635 1.06995 14.9138 1.14715 14.9481 1.23212C14.9824 1.31708 15 1.40815 15 1.50012C15 1.59208 14.9824 1.68315 14.9481 1.76811C14.9138 1.85308 14.8635 1.93028 14.8002 1.99531Z' /%3E%3C/svg%3E") no-repeat center center;
  font-size: 0;
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
  border-radius: .3125rem 0 0;
  transform: rotate(180deg);
}

@media (width >= 1024px) {
  .columns.timeline::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .columns.timeline > div {
    gap: 4.125rem;
  }

  .columns.timeline > div > div:first-child,
  .columns.timeline > div > div:last-child {
    flex: 0 1 50%;
  }

  /* date */
  .columns.timeline > div:nth-child(odd) > div:first-child {
    text-align: right;
  }

  .columns.timeline > div > div:first-child {
    font-size: 1.75rem;
    line-height: 2rem;
    text-align: left;
  }

  .columns.timeline > div > div:first-child p {
    background-color: transparent;
  }

  /* date dot */
  .columns.timeline > div > div:first-child::after {
    content: "";
    display: block;
    position: absolute;
    height: 1.625rem;
    width: 1.625rem;
    border-radius: 100%;
    background-color: var(--light-grey);
    top: 50%;
    transform: translateY(-50%);
  }

  .columns.timeline > div.timeline-active > div:first-child::after {
    background-color: var(--primary-color);
  }

  .columns.timeline > div:nth-child(odd) > div:first-child::after {
    right: -2.875rem;
  }

  .columns.timeline > div:nth-child(even) > div:first-child::after {
    left: -2.875rem;
  }

  .columns.timeline > div:nth-child(even) > div:first-child {
    order: 2;
  }

  .columns.timeline > div:nth-child(even) > div:last-child {
    order: 1;
  }
}

/* Timeline - Rice Krispies */
.theme-rice-krispies .columns.timeline > div {
  flex-direction: row;
  gap: 0;
  margin: 2rem auto;
  border-bottom: 0.3rem dotted var(--medium-grey);
  padding: 1rem 1rem 3rem;
  max-width: 20rem;
}

.theme-rice-krispies .columns.timeline > div > div {
  scroll-margin-top: 6.75rem;
}

.theme-rice-krispies .columns.timeline::after {
  content: "";
  display: none;
  background: transparent url('../../images/border-dot.svg') center / 3.5em 3.5em repeat-y;
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 1.875rem;
}

.theme-rice-krispies .columns.timeline p {
  max-width: 16rem;
  margin: 0 auto;
  text-align: center;
}

.theme-rice-krispies .columns.timeline h5 {
  margin: 0 0 .5rem;
  color: var(--black);
  font-size: var(--body-font-size);
  line-height: 1.5625rem;
}

.theme-rice-krispies .columns.timeline > div.timeline-active > div:first-child {
  color: var(--primary-color);
}

.theme-rice-krispies .columns.timeline p:first-child {
  margin: 0 auto;
}

/* timeline date */
.theme-rice-krispies .columns.timeline > div > div:first-child {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--black);
  position: relative;
  flex: 0 0 4rem;
  text-align: center;
  z-index: 1;
}

.theme-rice-krispies .columns.timeline h4 {
  font-size: 1.25rem;
}

.theme-rice-krispies .columns.timeline > div > div:first-child p {
  background-color: transparent;
}

/* timeline card */
.theme-rice-krispies .columns.timeline > div > div:last-child {
  background-color: transparent;
  padding: 0;
  width: 100%;
  position: relative;
  flex: 0 0 100%;
}

.theme-rice-krispies .columns.timeline > div > div:last-child p,
.theme-rice-krispies .columns.timeline > div > div:last-child h5 {
  display: block;
}

.theme-rice-krispies .columns.timeline > div.timeline-active > div:last-child,
.adobe-ue-edit .theme-rice-krispies .columns.timeline > div > div:last-child {
  padding: 1.5rem 1.5rem .5rem;
}

.theme-rice-krispies .columns.timeline > div.timeline-active > div:last-child p,
.theme-rice-krispies .columns.timeline > div.timeline-active > div:last-child h5,
.adobe-ue-edit .theme-rice-krispies .columns.timeline > div > div:last-child p,
.adobe-ue-edit .theme-rice-krispies .columns.timeline > div > div:last-child h5 {
  display: block;
}

.theme-rice-krispies .columns.timeline img {
  display: block;
  width: auto;
  margin: 0 auto 1rem;
  max-width: 16rem;
  max-height: 16rem;
}

.theme-rice-krispies .timeline .video-wrapper {
  max-width: 20rem;
  margin: 0 auto;
}

.theme-rice-krispies .timeline .video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.theme-rice-krispies .timeline .video-placeholder > * {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}

.theme-rice-krispies .timeline .video-placeholder picture img {
  width: 100%;
  height: 100%;
  max-width: 20rem;
  max-height: 11.5rem;
  object-fit: cover;
  margin-bottom: 0;
}

.theme-rice-krispies .timeline .video-placeholder-play button {
  background-color: var(--primary-color);
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(3);
  width: 22px;
  height: 22px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 0;
}

.theme-rice-krispies .timeline .video-placeholder-play button::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 0;
  height: 10px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid white;
  top: 4px;
  left: 7px;
}

@media (width >= 1024px) {
  .theme-rice-krispies .columns.timeline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .theme-rice-krispies .columns.timeline::after {
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }

  .theme-rice-krispies .columns.timeline > div {
    gap: 0;
    flex: 0 1 50%;
    width: 50%;
    margin: 0;
    border: 0;
    padding: 0;
    max-width: none;
  }

  .theme-rice-krispies .columns.timeline > div > div:first-child,
  .theme-rice-krispies .columns.timeline > div > div:last-child {
    flex: 0 100%;
  }

  /* date */
  .theme-rice-krispies .columns.timeline > div:nth-child(odd) > div:first-child {
    text-align: center;
  }

  .theme-rice-krispies .columns.timeline > div:nth-child(even) {
    margin: -12rem 0 0 auto;
  }

  .adobe-ue-edit .theme-rice-krispies .columns.timeline > div:nth-child(even) {
    margin: 0 0 0 auto;
  }

  .theme-rice-krispies .columns.timeline > div > div:first-child {
    font-size: unset;
    line-height: unset;
    text-align: center;
  }

  /* date dot */
  .theme-rice-krispies .columns.timeline > div > div:first-child::after {
    display: none;
  }

  .theme-rice-krispies .columns.timeline > div:nth-child(even) > div:first-child,
  .theme-rice-krispies .columns.timeline > div:nth-child(even) > div:last-child {
    order: unset;
  }
}

/* brand specific - Apple Jacks */
.theme-apple-jacks .section.secondary-bg-section > div:last-child {
  padding-bottom: 0;
}

.theme-apple-jacks .columns-2-cols > div {
  text-align: center;
  flex-direction: column-reverse;
}

.theme-apple-jacks .columns-2-cols img {
  display: block;
  margin: 0 auto;
}

.theme-apple-jacks .columns-2-cols p {
  margin: 0;
}

.theme-apple-jacks .columns-2-cols > div > div:not(.columns-img-col) img {
  max-width: 50%;
}

@media (width >= 1024px) {
  .theme-apple-jacks .columns-2-cols > div {
    flex-direction: row;
    align-items: flex-start;
  }

  .theme-apple-jacks .columns-2-cols > div > div:not(.columns-img-col) img {
    max-width: 80%;
  }
}

/* brand specific - Frosted Flakes */
.theme-frosted-flakes main .section.tertiary-bg-section .columns.two-thirds-column > div div:last-child {
  flex-basis: 42.3333%
}

.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) img {
  width: 40%;
}

.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h2,
.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h3,
.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h4,
.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h5,
.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h6,
.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) p {
  text-align: center;
  color: white;
  margin: 1rem 0;
}

.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) p {
  font-size: 1.33em;
}

.theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div div.columns-img-col img {
  display: none;
}

@media (width >= 1024px) {
  .theme-frosted-flakes main .section.tertiary-bg-section .columns-2-cols > div div.columns-img-col img {
    display: block;
    margin-bottom: -78px;
  }
}

/* brand specific - Frosted Mini-Wheats */
.theme-frosted-mini-wheats main .section.tertiary-bg-section .columns-2-cols > div > div ul li {
  font-family: var(--frosted-mini-wheats-accent-font);
  font-size: 1.25rem;
  color: var(--black);
  list-style: none;
  margin: 1rem 0;
}

.theme-frosted-mini-wheats main .section.tertiary-bg-section .columns-2-cols > div > div ul li::before {
  display: inline-block;
  content: '-';
  width: 1em;
  margin-left: -1em;
}

/* brand specific - Corn Flakes */
.theme-corn-flakes .tertiary-bg-section .columns-wrapper {
  position: relative;
}

.theme-corn-flakes .tertiary-bg-section .columns > div {
  flex-direction: column-reverse;
}

.theme-corn-flakes .tertiary-bg-section .columns-img-col p {
  margin: 0;
}

.theme-corn-flakes .tertiary-bg-section .columns-img-col img {
  position: relative;
  bottom: -52px;
  left: -2.4375rem;
  max-width: none;
  width: 100vw;
}

@media (width >= 1024px) {
  .theme-corn-flakes .tertiary-bg-section .columns > div {
    flex-direction: row;
  }

  .theme-corn-flakes .tertiary-bg-section .columns-img-col img {
    position: absolute;
    bottom: -3px;
    left: 0;
    max-width: 500px;
    width: 100%;
  }
}

/* brand specific - Cracklin' Oat Bran */
.theme-cracklin-oat-bran .tertiary-bg-section .columns-img-col {
  margin-left: -5.3rem;
}

.theme-cracklin-oat-bran .tertiary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) {
  text-align: center;
}

@media (width >= 1024px) {
  .theme-cracklin-oat-bran .tertiary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) {
    max-width: 45%;
  }
}

/* brand specific - Corn Pops */
.theme-corn-pops .section.tertiary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) {
  text-align: center;
}

.theme-corn-pops .section.tertiary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) h2 {
  color: var(--secondary-color);
}

@media (width >= 1024px) {
  .theme-corn-pops .section.tertiary-bg-section .columns-img-col img {
    margin-bottom: -4.9rem;
  }
}

/* brand specific - Smart Start */
.theme-smart-start main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h2,
.theme-smart-start main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h3,
.theme-smart-start main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h4,
.theme-smart-start main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h5,
.theme-smart-start main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h6,
.theme-smart-start main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) p {
  text-align: center;
  margin: 1rem 0;
}

/* brand specific - Mueslix */
.theme-mueslix main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h2,
.theme-mueslix main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h3,
.theme-mueslix main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h4,
.theme-mueslix main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h5,
.theme-mueslix main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) h6,
.theme-mueslix main .section.tertiary-bg-section .columns-2-cols > div > div:not(.columns-img-col) p {
  text-align: center;
  margin: 1rem 0;
}

/* brand specific - Krave */
.theme-krave .section.secondary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) h2,
.theme-krave .section.secondary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) p {
  color: var(--white);
  text-align: center;
}

.theme-krave .section.secondary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) p {
  margin: 2rem 0;
}

@media (width >= 1024px) {
  .theme-krave .section.secondary-bg-section .columns.columns-2-cols > div > div:not(.columns-img-col) p {
    margin: 1rem 0;
  }
}

/* stand alone specific - Kashi */
.theme-kashi.stand-alone .columns.stylized {
  position: relative;
}

.theme-kashi.stand-alone .columns.stylized > div {
  max-width: 720px;
  margin: 0 auto;
}

.theme-kashi.stand-alone .columns.stylized::before {
  content: '';
  display: none;
  position: absolute;
  background-color: var(--primary-color);
  height: 0.875rem;
  width: 0.875rem;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.theme-kashi.stand-alone .columns.stylized::after {
  content: '';
  display: none;
  position: absolute;
  width: 2px;
  height: calc(100% + (3.875rem * 2));
  background-color: var(--primary-color);
  top: -3.875rem;
  left: 50%;
  transform: translateX(-50%);
}

.theme-kashi.stand-alone.ca-site .columns.stylized::before,
.theme-kashi.stand-alone.ca-site .columns.stylized::after {
  display: none;
}

.theme-kashi.stand-alone .columns.stylized h2 {
  font-size: 2.185rem;
}

.theme-kashi.stand-alone .section.stylized h3 {
  color: var(--primary-hover);
  font-size: 1.25rem;
  line-height: 1.55rem;
}

.theme-kashi.stand-alone .section.stylized p {
  color: var(--black);
}

.theme-kashi.stand-alone .section.stylized h4 {
  font-size: 1.9rem;
  color: var(--primary-hover);
  line-height: 2rem;
  text-align: center;
  padding-top: 4.875rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.theme-kashi.stand-alone .section.stylized .columns:not(.stylized) {
  display: none;
  scroll-margin-top: -4.875rem;
}

.adobe-ue-edit .theme-kashi.stand-alone .section.stylized .columns:not(.stylized) {
  display: block;
}

.theme-kashi.stand-alone .section.stylized.active .columns:not(.stylized) {
  display: block;
}

.theme-kashi.stand-alone .section.stylized .columns:not(.stylized) > div {
  align-items: center;
}

.theme-kashi.stand-alone .section.stylized .columns:not(.stylized) p,
.theme-kashi.stand-alone .section.stylized .columns:not(.stylized) h3 {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.theme-kashi.stand-alone .columns.columns-3-cols img {
  width: auto;
}

.theme-kashi.stand-alone.ca-site .columns.stylized .columns-img-col p {
  margin: 0;
}

.theme-kashi.stand-alone.ca-site .columns.stylized > div > div:not(.columns-img-col) {
  padding: 0 1rem;
}

.theme-kashi.stand-alone.ca-site .columns.stylized .columns-img-col img {
  padding: 0;
}

@media (width >= 1024px) {
  .theme-kashi.stand-alone .columns.stylized > div {
    max-width: none;
  }

  .theme-kashi.stand-alone .columns.stylized::before,
  .theme-kashi.stand-alone .columns.stylized::after {
    display: block;
  }

  .theme-kashi.stand-alone .section.stylized .columns:not(.stylized) > div {
    align-items: flex-start;
  }

  .theme-kashi.stand-alone .section.stylized h4 {
    max-width: 80%;
  }
}

/* stand alone specific - Bear Naked Site */
.theme-bear-naked-site.stand-alone .columns.stylized {
  position: relative;
}

.theme-bear-naked-site.stand-alone .columns.stylized > div {
  max-width: 720px;
  margin: 0 auto;
}

.theme-bear-naked-site.stand-alone .columns.stylized::before {
  content: '';
  display: none;
  position: absolute;
  background-color: var(--primary-color);
  height: 0.875rem;
  width: 0.875rem;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.theme-bear-naked-site.stand-alone .columns.stylized::after {
  content: '';
  display: none;
  position: absolute;
  width: 2px;
  height: calc(100% + (3.875rem * 2));
  background-color: var(--primary-color);
  top: -3.875rem;
  left: 50%;
  transform: translateX(-50%);
}

.theme-bear-naked-site.stand-alone.ca-site .columns.stylized::before,
.theme-bear-naked-site.stand-alone.ca-site .columns.stylized::after {
  display: none;
}

.theme-bear-naked-site.stand-alone .columns.stylized h2 {
  font-size: 2.185rem;
}

.theme-bear-naked-site.stand-alone .section.stylized h3 {
  color: var(--primary-hover);
  font-size: 1.25rem;
  line-height: 1.55rem;
}

.theme-bear-naked-site.stand-alone .section.stylized p {
  color: var(--black);
}

.theme-bear-naked-site.stand-alone .section.stylized h4 {
  font-size: 1.9rem;
  color: var(--primary-hover);
  line-height: 2rem;
  text-align: center;
  padding-top: 4.875rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.theme-bear-naked-site.stand-alone .section.stylized .columns:not(.stylized) {
  display: none;
  scroll-margin-top: -4.875rem;
}

.adobe-ue-edit .theme-bear-naked-site.stand-alone .section.stylized .columns:not(.stylized) {
  display: block;
}

.theme-bear-naked-site.stand-alone .section.stylized.active .columns:not(.stylized) {
  display: block;
}

.theme-bear-naked-site.stand-alone .section.stylized .columns:not(.stylized) > div {
  align-items: center;
}

.theme-bear-naked-site.stand-alone .section.stylized .columns:not(.stylized) p,
.theme-bear-naked-site.stand-alone .section.stylized .columns:not(.stylized) h3 {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.theme-bear-naked-site.stand-alone .columns.columns-3-cols img {
  width: auto;
}

.theme-bear-naked-site.stand-alone.ca-site .columns.stylized .columns-img-col p {
  margin: 0;
}

.theme-bear-naked-site.stand-alone.ca-site .columns.stylized > div > div:not(.columns-img-col) {
  padding: 0 1rem;
}

.theme-bear-naked-site.stand-alone.ca-site .columns.stylized .columns-img-col img {
  padding: 0;
}

@media (width >= 1024px) {
  .theme-bear-naked-site.stand-alone .columns.stylized > div {
    max-width: none;
  }

  .theme-bear-naked-site.stand-alone .columns.stylized::before,
  .theme-bear-naked-site.stand-alone .columns.stylized::after {
    display: block;
  }

  .theme-bear-naked-site.stand-alone .section.stylized .columns:not(.stylized) > div {
    align-items: flex-start;
  }

  .theme-bear-naked-site.stand-alone .section.stylized h4 {
    max-width: 80%;
  }
}

/* stand alone - Rice Krispies */
.theme-rice-krispies.stand-alone .columns.stylized > div > div:not(.columns-img-col) {
  text-align: center;
  padding: 0 1rem;
}

.theme-rice-krispies.stand-alone .columns.stylized > div > div:not(.columns-img-col) h2 {
  margin: 2rem 0 0;
}

.theme-rice-krispies.stand-alone .columns.stylized > div > div:not(.columns-img-col) .button-container {
  display: inline-block;
  margin: .5rem 0;
}

.theme-rice-krispies.stand-alone .columns.stylized > div > div.columns-img-col p {
  margin: 0;
}

@media(width >= 768px) {
  .theme-rice-krispies.stand-alone .columns.stylized > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    align-items: center;
  }

  .theme-rice-krispies.stand-alone .columns.stylized > div > div:not(.columns-img-col) {
    max-width: 650px;
    margin-left: auto;
    padding: 0 0 0 2rem;
    text-align: unset;
  }

  .theme-rice-krispies.stand-alone .columns.stylized > div > div.columns-img-col img {
    aspect-ratio: 6 / 5;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* stand alone - Frosted Flakes */
.theme-frosted-flakes.stand-alone .section.full-width .columns-wrapper {
  max-width: 1440px;
  padding: 3.875rem 5.375rem;
  margin: auto;
}

/* stand alone - Mission Tiger */
.theme-mission-tiger .columns.stylized.extra-padding > div {
  text-align: center;
  gap: 1rem;
}

.theme-mission-tiger .columns img {
  width: auto;
  margin: 0 auto;
}

.theme-mission-tiger .columns.columns-3-cols img {
  padding: 0 3rem;
}

.theme-mission-tiger .columns.stylized:not(.extra-padding) > div {
  text-align: left;
  gap: 0;
  align-items: stretch;
}

.theme-mission-tiger .columns.stylized:not(.extra-padding) > div > div {
  padding: 1rem 1.5rem;
}

.theme-mission-tiger .columns.stylized:not(.extra-padding) > div > div:nth-child(even) {
  background-color: rgba(248 105 4 / 70%);
}

.theme-mission-tiger .columns.stylized:not(.extra-padding) p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
}

.theme-mission-tiger .columns.light-text.large-text {
  max-width: 1440px;
  padding: 2rem 1rem 0;
  margin: auto;
}

.theme-mission-tiger .columns.light-text.large-text > div {
  flex-direction: row;
  gap: 2rem;
}

.theme-mission-tiger .columns.light-text.large-text > div > div {
  flex-basis: 50%;
  display: flex;
  align-items: center;
}

.theme-mission-tiger .columns.light-text.large-text img {
  display: block;
}

.theme-mission-tiger .columns.light-text.large-text .columns-img-col {
  margin-top: auto;
}

.theme-mission-tiger .columns.light-text.large-text .columns-img-col p {
  margin: 0;
}

.theme-mission-tiger .columns.light-text.large-text p {
  font-size: 5vw;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

@media(width >= 1024px) {
  .theme-mission-tiger .columns.stylized.extra-padding > div {
    gap: 7rem;
  }

  .theme-mission-tiger .columns.columns-3-cols img {
    padding: 0;
  }

  .theme-mission-tiger .columns.stylized:not(.extra-padding) > div > div {
    padding: 2.5rem 3.5rem;
  }

  .theme-mission-tiger .columns.stylized:not(.extra-padding) p {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .theme-mission-tiger .columns.light-text.large-text {
    padding: 3.875rem 5.375rem 0;
  }

  .theme-mission-tiger .columns.light-text.large-text p {
    font-size: 3.375rem;
    margin-bottom: 5.875rem;
  }
}

/* All-Bran Canada Brand Landing */
.theme-all-bran.ca-brand .section .columns.stylized .columns-img-col p {
  margin: 0;
}

.theme-all-bran.ca-brand .section:not(.accent-1-bg-section) .columns.stylized .columns-img-col p {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}

.theme-all-bran.ca-brand .columns.stylized .columns-img-col {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.theme-all-bran.ca-brand .columns.stylized {
  max-width: 600px;
  margin: 2rem auto;
}

.theme-all-bran.ca-brand .columns.stylized ul {
  padding-left: 1.3rem;
}

.theme-all-bran.ca-brand .columns.stylized.large-text ul li {
  margin: 1rem 0;
  font-weight: bold;
}

.theme-all-bran.ca-brand .accent-1-bg-section .columns.stylized > div {
  gap: 1rem;
}

.theme-all-bran.ca-brand .accent-2-bg-section .columns.stylized .columns-img-col p {
  background-color: var(--accent-color-1);
}

.theme-all-bran.ca-brand .accent-3-bg-section .columns.stylized .columns-img-col p {
  background-color: var(--accent-color-2);
}

.theme-all-bran.ca-brand .accent-4-bg-section .columns.stylized .columns-img-col p {
  background-color: var(--accent-color-3);
}

.theme-all-bran.ca-brand .section:not(.accent-1-bg-section) .columns.stylized .columns-img-col img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}

@media(width >= 1024px) {
  .theme-all-bran.ca-brand .columns.stylized {
    max-width: 900px;
  }

  .theme-all-bran.ca-brand .columns.stylized .columns-img-col {
    max-width: none;
  }
}

.columns.center-aligned {
  text-align: center;
}


/* colums block variation awayfromhome */

.columns.three-fourths-column.text-with-circular-block>div>div:first-child h3 {
  display: flex;
  align-items: end;
  font-size: 2.635rem;
  color: #c81344;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.columns.text-with-circular-block>div>div:first-child h3::after {
  content: '';
  height: 3px;
  flex: 1;
  background: #ffbf3e;
  margin-left: 0.625rem;
  position: relative;
}

.columns.text-with-circular-block>div>div:last-child {
  background: #4f8cfe;
  padding: 2.625rem;
  border-radius: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.375rem;
  line-height: 1.75rem;
  text-align: center;
  min-width: 345px;
  color: #fff;
  font-weight: 600;
}

@media(width <= 1023px) { 
  .columns.text-with-circular-block>div>div:last-child {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    min-height: 100%;
  }

  .section.seeds-text-section .columns > div {
    gap: 2rem;
  }
}

@media (width >= 1024px) {
  .text-with-circular-block.reverse > div {
   flex-direction: row-reverse;
  }
}

.columns.text-with-circular-block.bg-light-blue>div>div:last-child {
  background: #4f8cfe;
}

.columns.text-with-circular-block.bg-dark-blue>div>div:last-child {
  background: #003ea4;
}

.columns.text-with-circular-block.bg-orange>div>div:last-child {
  background: #ffbf3e;
  color: #c81344;
}

.columns.text-with-circular-block.bg-cheery>div>div:last-child {
  background: #c81344;
}

.columns.image-with-text.orange-bg > div > div:has(h1, h2) {
  background-color: orange;
}

.columns.image-with-text.light-blue-bg > div > div:has(h1, h2) {
  background-color: rgb(0 217 255);
}

.columns.image-with-text.dark-blue-bg > div > div:has(h1, h2) {
  background-color: rgb(0 0 255);
}

.columns.image-with-text.cheery-bg > div > div:has(h1, h2) {
  background-color: #f5b3be;
}

.columns.image-with-text.purple-bg > div > div:has(h1, h2)  {
  background-color: purple;
}

.columns.image-with-text.columns-2-cols > div,
.columns.image-with-text.one-thirds-column.columns-2-cols > div,
.columns.image-with-text.two-thirds-column.columns-2-cols > div,
  .columns.image-with-text.one-fourths-column.columns-2-cols > div {
  display: grid;
  grid-template-columns: 1fr;
}

.columns.image-with-text.two-thirds-column > div > .columns-img-col,
.columns.image-with-text.one-thirds-column > div > .columns-img-col,
.columns.image-with-text.one-fourths-column > div > .columns-img-col {
  width: 100%;
  margin:0;
}

.columns.image-with-text > div > div:has(h1, h2) h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
  max-inline-size: 12ch;
  letter-spacing: 0;
}

.columns.image-with-text > div > div:has(h1, h2) .button-container {
  margin-top: 1.5rem;
}

.columns.image-with-text.columns-2-cols .columns-img-col p {
  margin: 0;
}

.columns.image-with-text > div > div:has(h1, h2) .button-container a {
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  background-color: #fff;
}

.columns.image-with-text.dark-blue-bg > div >  div:has(h1, h2) .button-container a {
  color: rgb(0 0 255);
}

.columns.image-with-text.light-blue-bg > div >  div:has(h1, h2) .button-container a {
  color: rgb(0 217 255);
}

.columns.image-with-text.orange-bg > div >  div:has(h1, h2) .button-container a {
  color: orange;
}

.columns.image-with-text.cheerry-bg > div >  div:has(h1, h2) .button-container a {
  color: #f5b3be;
}

.columns.image-with-text.purple-bg > div >  div:has(h1, h2) .button-container a {
  color: purple;
}

.columns.image-with-text > div > div:has(h1, h2) {
  display: grid;
  text-align: left;
  box-sizing: border-box; 
  padding: 2rem 1rem;
  grid-auto-rows: max-content;
  color: white;
  place-content: center;
}

.columns.image-with-text.columns-2-cols > div  {
  display: grid;
  align-items: normal;
  justify-content: center;
  gap: 0;
}

.columns.image-with-text.columns-2-cols > div > .columns-img-col img {
  object-fit: cover;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.columns.image-with-text.columns-2-cols > div > .columns-img-col {
  display: grid;
}

.columns.image-with-text > div > div:has(h1, h2) p {
  margin: 0;
  line-height: 1.2rem;
}

.section.seeds-text-section .columns > div {
  align-items: normal;
}

.section.seeds-text-section .columns > div > div {
  display:flex;
  flex-direction: column;
  padding: 0.9rem;
  border-radius: 2rem;
  color: #fff;
  font-size: 1rem;
}

.section.seeds-text-section .columns.cheery-bg > div > div {
  background: #c91245;
}

.section.seeds-text-section .columns.dark-blue-bg > div > div {
  background-color:#0061af;
}

.section.seeds-text-section .columns.purple-bg > div > div {
  background-color: #64154C;
}

.section.seeds-text-section .columns-wrapper .columns  {
  margin: 0 auto;
}

.section.seeds-text-section .columns > div > div > p {
  text-align: center;
  margin: 0;
}

.section.seeds-text-section .columns > div > div > p:first-child {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.section.seeds-text-section .columns > div > div > p:not(:first-child) {
  font-size: 1.125rem;
}

.section.seeds-text-section .columns > div > div > p > em {
  font-family: inherit;
  font-style: italic;
}

.section.seeds-text-section .columns > div > div > ul > li {
  line-height: 1.5;
  font-size: 1rem;
}

.section.seeds-text-section .columns > div > div > ul > li > sup {
  font-size: 0.9rem;
  line-height: 0;
}

.section.seeds-text-section .columns > div > div > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section.seeds-text-section .columns > div > div > p:last-child {
  text-align: left;
  padding-left: 2rem;
  margin-top: auto;
  font-size: 0.7rem;
  line-height: 1.4;
}

.section.seeds-text-section .columns > div > div > p > strong {
  font-weight: 600;
}

.section.seeds-page-section .columns-wrapper .columns.columns-2-cols {
  margin: 0 auto;
}

.section.seeds-page-section .columns-wrapper .columns.columns-2-cols p.button-container {
  margin-top: 1.76rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.section.seeds-page-section .columns-wrapper .columns.columns-2-cols .button-container a {
  padding: 16px 36px;
  border-radius: 500px;
  font-size: 1.5rem;
  color: var(--white);
  font-family: Montserrat, 'Mission Gothic', sans-serif;
  text-transform: none;
}

.theme-raisin-bran .section.seeds-page-section .columns-wrapper .columns.columns-2-cols .button-container a {
  background-color: #6b1f5c;
  color: #fff;
}

.theme-frosted-flakes .section.seeds-page-section .columns-wrapper .columns.columns-2-cols .button-container a {
  background-color: var(--primary-color);
  color: #fff;
}


.section.seeds-page-section .columns-wrapper .columns.columns-2-cols .button-container a:hover {
  background-color: transparent;
  color: var(--primary-color);
  outline: 2px solid var(--primary-color);
}

.section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div {
  padding: 3rem 2rem;
  justify-content: center;
  gap:1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10.2%);
 }

 .theme-special-k .seeds-page-section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div {
  padding: 3rem 0;
 }

 .theme-special-k .section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div {
  box-shadow: unset;
  border-radius: unset;
 }

.section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div > div:last-child h2 {
  font-family: Montserrat, 'Mission Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: 0%;
}

.section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div > div:last-child p {
  font-size: 1.125rem;
  font-family: Montserrat, 'Mission Gothic', sans-serif;
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0%;
}

.section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div > div:last-child p > sup {
  font-size: 0.7rem;
}

  .section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div .columns-img-col {
    max-width: 250px;
    max-height: 250px;
    align-self: center;  
  }

  .section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div .columns-img-col > p {
    margin-block: 0;
  }

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .columns.columns-2-cols.bg-dark-blue > div .columns-img-col {
    margin-bottom: -15px;
  }

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols > div .columns-img-col {
    max-width: 769px;
    max-height: 520px;
    align-self: center;  
  }

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols > div .columns-img-col {
  max-width: 440px;
  max-height: 440px;
  align-self: center;  
}

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols p {
    margin-block: 0;
  }

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols .button-container {
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
}

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols .button-container a {
  background-color: #fff;
  color: #c60316;
  padding: 14px 18px;
  border-radius: 0;
  font-size: 20px;
  font-weight: 700;
  box-sizing: border-box;
}

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols > div > div:last-child p:has(> a:first-child:nth-last-child(2)) {
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 1rem;
  text-align: center;
}

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols > div > div:last-child p:has(> a:first-child:nth-last-child(2)) > a {
  background-color: #fff;
  text-decoration: none;
  color: #c60316;
  padding: 14px 18px;
  border-radius: 0;
  font-size: 20px;
  font-weight: 700;
  width: 250px;
  white-space: nowrap;
  box-sizing: border-box;
}

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols ul {
  list-style: none;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 1rem;
}

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols ul li::before{
  content: "";
  display: inline-block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M15 27L8 20L5.6667 22.3333L15 31.6667L35 11.6667L32.6667 9.3333L15 27Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
}

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols {
    position: relative;
  }
  
  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='45' height='73' viewBox='0 0 45 73' fill='none'%3E%3Cpath d='M0.5692 25.4402L45 8.15275V0L0.5692 25.4402Z' fill='%23FC6718'/%3E%3Cpath d='M0.378948 40.75L45 23.9821V15.8255L0.378948 40.75Z' fill='%23FC6718'/%3E%3Cpath d='M0 55.944L45 40.2226V32.0713L0 55.944Z' fill='%23FC6718'/%3E%3Cpath d='M0.360485 73L45 56.283V48.1265L0.360485 73Z' fill='%23FC6718'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
    top: 35%;
    transform: translateY(-35%);
  }

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='45' height='73' viewBox='0 0 45 73' fill='none'%3E%3Cpath d='M0.5692 25.4402L45 8.15275V0L0.5692 25.4402Z' fill='%23FC6718'/%3E%3Cpath d='M0.378948 40.75L45 23.9821V15.8255L0.378948 40.75Z' fill='%23FC6718'/%3E%3Cpath d='M0 55.944L45 40.2226V32.0713L0 55.944Z' fill='%23FC6718'/%3E%3Cpath d='M0.360485 73L45 56.283V48.1265L0.360485 73Z' fill='%23FC6718'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
    top: 70%;
    transform: translateY(-70%);
  }

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols > div > div:last-child  p:has(> a:first-child:nth-last-child(2)) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-top: 2rem !important;
  }

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols  p:has(> a:first-child:nth-last-child(2)) > a {
    background-color: #ff9029;
    color: #231414;
    border: 0;
    text-decoration: none;
    border-radius: 0;
    width: 240px;
    white-space: nowrap;
    text-align: center;
    padding: 0.7em 1.5em 0.65em;
    transition: color 0.15s, background-color 0.15s;
    font-weight: 900;
  }

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols  .button-container a:hover {
    background-color: #ff9029;
    outline:none;
  }

  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols  p > a:hover {
    background-color: #ff9029;
    outline:none;
  }

   .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols  p > a > svg {
    display: none;
  }

  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols {
    background-color: #0042A7;
    background-image: radial-gradient(70.38% 69.87% at 28.27% 60.08%, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 50%) 100%);
    max-width: 100%;
    text-align: center;
  }

.theme-special-k .seeds-page-section.columns-container .cheery-bg {
  padding: 1rem 2rem;
}

.theme-special-k .seeds-page-section.columns-container.has-background-image {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h1,
.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h2,
.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h3,
.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols p,
.theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols h1,
.theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols h2,
.theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols h3,
.theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols p{
    color: #fff;
  }

.theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols > div:last-child {
  align-items: center;
}

.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols >div > div:last-child h1,
.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols >div > div:last-child h2,
.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols >div > div:last-child h3,
.theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols >div > div:last-child p {
  margin-block:0;
}

@media (width < 768px) {
  .theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols .button-container {
    justify-content: flex-start;
    text-align: left;
    gap: 0.5rem;
  }

  .theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols > div > div:last-child {
    justify-self: center;
    text-align: left;
  }

  .theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols > div:last-child li {
    justify-self: flex-start;
    text-align: left;
  }

  .theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols h2 {
    line-height: 2rem !important;
  }

  .theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols ul {
    text-align: left;
    align-items: flex-start;
  }

  .theme-special-k .section.seeds-page-section .columns-wrapper .cheery-bg.columns.columns-2-cols > div > div:last-child p:has(> a:first-child:nth-last-child(2)),
  .theme-frosted-flakes .section.seeds-page-section .columns-wrapper .bg-dark-blue.columns.columns-2-cols > div > div:last-child  p:has(> a:first-child:nth-last-child(2)) {
    flex-direction: column;
  }
}

.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h1 strong,
.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h2 strong,
.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h3 strong,
.theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols p strong {
  color: #FF7500;
}

@media(width >= 768px) {
  .columns.image-with-text.columns-2-cols > div  {
    grid-template-columns: 1fr 1fr;
  }

  .columns.image-with-text.one-thirds-column.columns-2-cols > div {
    grid-template-columns: 1fr 2fr;
  }

  .columns.image-with-text.two-thirds-column.columns-2-cols > div {
    grid-template-columns: 2fr 1fr;
  }

  .columns.image-with-text.one-fourths-column.columns-2-cols > div {
    grid-template-columns: 1fr 3fr;
  }

  .columns.image-with-text.three-fourths-column.columns-2-cols > div {
    grid-template-columns: 3fr 1fr;
  }

  .theme-frosted-flakes .seeds-page-section .bg-dark-blue.columns-2-cols {
    background-color: #0042A7;
    text-align: unset !important;
  }

  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols > div,
  .theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols > div  {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
  }

  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols {
    background-image: radial-gradient(70.38% 69.87% at 28.27% 60.08%, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 50%) 100%);
  }

  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h1 strong,
  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h2 strong,
  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h3 strong,
  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols p strong {
    color: #FF7500;
  }

  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h2,
  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h3 {
    margin-block: 1rem;
  }

  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols h2 {
    line-height: 125%;
  }

  .theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols h2 {
    line-height: 100% !important;
    font-size: 3rem !important;
  }

  .theme-frosted-flakes .seeds-page-section.columns-container .bg-dark-blue.columns-2-cols p {
    margin-top: 1.5rem;
  }

  .theme-special-k .seeds-page-section.columns-container .cheery-bg.columns-2-cols p {
    margin-top: 1rem;
  }
}

@media(width >= 1024px) {
  .section.seeds-text-section .columns-wrapper .columns  {
   max-width: 75%;
  }

  .theme-frosted-flakes .section.ff-seeds-page .columns-wrapper:has(.columns.columns-2-cols) {
    max-width: 1200px !important;
  }
  
  .theme-frosted-flakes .section.ff-seeds-page .columns-wrapper .columns.columns-2-cols > div {
    padding: 72px  60px;
    gap: 3.25rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10.2%);
    border-radius: 1.5rem;
  }

  .theme-frosted-flakes .section.ff-seeds-page .columns-wrapper .columns.columns-2-cols > div p {
      margin: 0;
  }

  .section.seeds-page-section.columns-wrapper .columns.columns-2-cols > div .columns-img-col {
    max-width: 300px;  
  }

  .section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div > div:last-child {
    max-width: 800px;
  }

  .section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div > div:last-child h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: Montserrat, 'Mission Gothic', sans-serif;
    line-height: 100%;
    margin: 0 0 1.76rem;
  }

  .section.seeds-page-section .columns-wrapper .columns.columns-2-cols > div > div:last-child p {
    font-size: 1.3125rem;
    font-weight: 500;
    font-family: Montserrat, 'Mission Gothic', sans-serif;
    line-height: 160%;
  }

 .section.seeds-page-section .columns-wrapper .columns.columns-2-cols .button-container a {
    padding: 12px 28px;
    border-radius: 500px;
    font-weight: 600;
    gap: 16px;
    line-height: 1.5rem;
  }

  .section.seeds-page-section .columns-wrapper .columns.columns-2-cols p.button-container {
    margin-top: 1.76rem !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
}

/* checkbox */
.columns .checkbox-wrapper-custom {
  position: relative;
}

.columns .checkbox-overlay-custom {
  position: absolute;
  top: 30px;
  left: 14px;
  z-index: 10;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.primary-bg-section .columns .checkbox-overlay-custom {
  left: calc(12px + 3rem);
}

.columns .checkbox-overlay-custom .zip-asset-cb {
  pointer-events: auto;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255 255 255 / 90%);
  border-radius: 6px;
  background: rgba(0 0 0 / 45%);
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 3px rgba(0 0 0 / 30%);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ── hover: bright & visible on any bg ── */
.columns .checkbox-overlay-custom .zip-asset-cb:hover {
  background: rgba(0 0 0 / 60%);
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255 255 255 / 40%);
}

/* ── checked state ── */
.columns .checkbox-overlay-custom .zip-asset-cb:checked {
  background: #c91245;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(0 0 0 / 30%);
}

.columns .checkbox-overlay-custom .zip-asset-cb:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -55%) rotate(45deg);
}

/* ── show full opacity on wrapper hover OR when checked ── */
.columns .checkbox-wrapper-custom:hover .checkbox-overlay-custom,
.columns .checkbox-overlay-custom:hover,
.columns .checkbox-overlay-custom .zip-asset-cb:checked {
  opacity: 1;
}

.columns .zip-select-all-btn,
.default-content-wrapper:has(+ .columns-wrapper) .zip-select-all-btn {
  background: #c91245;
  color: #fff;
  border: 0;
  text-decoration: none;
  font-size: small;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  margin-right: 12px;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.columns .zip-select-all-btn:hover,
.default-content-wrapper:has(+ .columns-wrapper) .zip-select-all-btn:hover {
  opacity: 0.9;
}

.columns .zip-select-all-btn:active,
.default-content-wrapper:has(+ .columns-wrapper) .zip-select-all-btn:active {
  transform: scale(0.98);
}

.columns .zip-select-all-btn.all-selected,
.default-content-wrapper:has(+ .columns-wrapper) .zip-select-all-btn.all-selected {
  background: #222;
  color: #fff;
}

.columns .zip-select-all-btn:disabled,
.default-content-wrapper:has(+ .columns-wrapper) .zip-select-all-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.default-content-wrapper:has(+ .columns-wrapper) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
}

.default-content-wrapper:has(+ .columns-wrapper):has(h3) {
  grid-template-rows: auto auto;
}

.default-content-wrapper:has(+ .columns-wrapper) h2 {
  grid-column: 1 / -1;
}

.default-content-wrapper:has(+ .columns-wrapper):has(h3) h3 {
  grid-column: 1;
}

.default-content-wrapper:has(+ .columns-wrapper):has(h3) .zip-select-all-btn {
  grid-column: 2;
  justify-self: end;
}

.default-content-wrapper:has(+ .columns-wrapper):not(:has(h3)) {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
}

.default-content-wrapper:has(+ .columns-wrapper):not(:has(h3)) h2 {
  grid-column: 1;
}

.default-content-wrapper:has(+ .columns-wrapper):not(:has(h3)) .zip-select-all-btn {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

/* ── Video Feature */
.columns .columns-video-col {
  flex: 1;
}

.columns .columns-video-col .video-trigger {
  cursor: pointer;
  margin: 0;
  line-height: 0;
}

.columns .columns-video-col .video-trigger img {
  width: 100%;
  display: block;
}

.columns .columns-video-col .video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.columns .columns-video-col .video-wrapper iframe,
.columns .columns-video-col .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

/* ── direct video: match sibling image column proportions ── */
.columns .columns-video-col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.columns > div > .columns-video-col {
  flex: 1;
  min-width: 0;
}

