/* Blog archive & single — Cotton editorial layout */

.bsp-blog--cotton {
  --bsp-blog-pad-x: clamp(20px, 4vw, 48px);
  background: var(--bsp-blog-bg, #ffffff);
  color: var(--bsp-blog-title, #111111);
}

/* Hero banner */
.bsp-blog--cotton .bsp-blog__hero {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 32vw, 420px);
  overflow: hidden;
  background: #111111;
}

.bsp-blog--cotton .bsp-blog__hero-media {
  position: absolute;
  inset: 0;
  background-color: #2a2a2a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bsp-blog--cotton .bsp-blog__hero--fallback .bsp-blog__hero-media {
  background-image: linear-gradient(135deg, #3a3a3a 0%, #111111 100%);
}

.bsp-blog--cotton .bsp-blog__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

.bsp-blog--cotton .bsp-blog__hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 40px var(--bsp-blog-pad-x);
  box-sizing: border-box;
  text-align: right;
}

.bsp-blog--cotton .bsp-blog__hero-title {
  margin: 0;
  max-width: min(640px, 58vw);
  color: #ffffff;
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.bsp-blog--cotton .bsp-blog__hero-description {
  margin: 14px 0 0;
  max-width: min(520px, 52vw);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
}

/* Shell & grid */
.bsp-blog--cotton .bsp-blog__shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(32px, 5vw, 56px) var(--bsp-blog-pad-x) clamp(48px, 6vw, 80px);
  box-sizing: border-box;
}

/* Width: full (default) vs theme container */
.bsp-blog--cotton.bsp-blog--width-container .bsp-blog__shell {
  width: min(100% - 32px, var(--bsp-container, 1320px));
  max-width: var(--bsp-container, 1320px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.bsp-blog--has-hero .bsp-blog__shell {
  padding-top: clamp(24px, 3vw, 36px);
}

.bsp-blog--cotton .bsp-blog__layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.bsp-blog--cotton.bsp-blog--right-sidebar .bsp-blog__layout {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
}

.bsp-blog--cotton.bsp-blog--no-sidebar .bsp-blog__layout,
.bsp-blog--cotton.bsp-blog--no-sidebar.bsp-blog--right-sidebar .bsp-blog__layout {
  grid-template-columns: minmax(0, 1fr);
}

.bsp-blog--cotton.bsp-blog--fullwidth .bsp-blog__main {
  max-width: 100%;
}

/* Breadcrumbs */
.bsp-blog--cotton .bsp-blog__breadcrumbs {
  margin: 0 0 clamp(20px, 3vw, 28px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bsp-blog-border, #e5e5e5);
  color: var(--bsp-blog-muted, #6b6b6b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__breadcrumbs a {
  color: var(--bsp-blog-muted, #6b6b6b);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__breadcrumbs a:hover {
  color: var(--bsp-blog-accent, #111111);
}

.bsp-blog--cotton .bsp-blog__breadcrumb-sep {
  margin: 0 8px;
  color: #c4c4c4;
}

.bsp-blog--has-hero .bsp-blog__breadcrumbs {
  display: none;
}

/* Archive header */
.bsp-blog--cotton .bsp-blog__archive-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.bsp-blog--cotton .bsp-blog__archive-header--kicker-only {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.bsp-blog--cotton .bsp-blog__kicker {
  margin: 0 0 10px;
  color: var(--bsp-blog-muted, #6b6b6b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__archive-title {
  margin: 0 0 12px;
  color: var(--bsp-blog-title, #111111);
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__archive-subtitle {
  margin: 0;
  max-width: 56ch;
  color: var(--bsp-blog-text, #6b6b6b);
  font-size: 15px;
  line-height: 1.65;
}

/* Post grid */
.bsp-blog--cotton .bsp-blog__posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.bsp-blog--cotton.bsp-blog--fullwidth .bsp-blog__posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bsp-blog--cotton .bsp-blog__post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
}

.bsp-blog--cotton .bsp-blog__post-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e4df;
  text-decoration: none;
}

.bsp-blog--cotton .bsp-blog__post-image,
.bsp-blog--cotton .bsp-blog__post-media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bsp-blog--cotton .bsp-blog__post-media-placeholder {
  background: linear-gradient(180deg, #ece8e3 0%, #d9d4ce 100%);
}

.bsp-blog--cotton .bsp-blog__post-media:hover .bsp-blog__post-image {
  transform: scale(1.03);
}

.bsp-blog--cotton .bsp-blog__post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__post-category {
  color: var(--bsp-blog-accent, #111111);
}

.bsp-blog--cotton .bsp-blog__post-date {
  color: var(--bsp-blog-muted, #6b6b6b);
}

.bsp-blog--cotton .bsp-blog__post-title {
  margin: 10px 0 0;
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
}

.bsp-blog--cotton .bsp-blog__post-title a {
  color: var(--bsp-blog-title, #111111);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__post-title a:hover {
  opacity: 0.65;
}

.bsp-blog--cotton .bsp-blog__post-excerpt {
  margin: 10px 0 0;
  color: var(--bsp-blog-text, #6b6b6b);
  font-size: 14px;
  line-height: 1.65;
}

/* Pagination */
.bsp-blog--cotton .bsp-blog__pagination {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--bsp-blog-border, #e5e5e5);
  text-align: center;
}

.bsp-blog--cotton .bsp-blog__pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.bsp-blog--cotton .bsp-blog__pagination a,
.bsp-blog--cotton .bsp-blog__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--bsp-blog-border, #e5e5e5);
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__pagination a {
  color: var(--bsp-blog-accent, #111111);
  background: transparent;
}

.bsp-blog--cotton .bsp-blog__pagination a:hover {
  background: var(--bsp-blog-accent, #111111);
  border-color: var(--bsp-blog-accent, #111111);
  color: #ffffff;
}

.bsp-blog--cotton .bsp-blog__pagination .current {
  background: var(--bsp-blog-accent, #111111);
  border-color: var(--bsp-blog-accent, #111111);
  color: #ffffff;
}

/* Sidebar */
.bsp-blog--cotton .bsp-blog__sidebar {
  position: sticky;
  top: 110px;
  padding: 0 0 0 clamp(16px, 2vw, 24px);
  border-left: 1px solid var(--bsp-blog-border, #e5e5e5);
  background: var(--bsp-blog-sidebar, #ffffff);
}

.bsp-blog--cotton.bsp-blog--left-sidebar .bsp-blog__sidebar {
  padding: 0 clamp(16px, 2vw, 24px) 0 0;
  border-left: 0;
  border-right: 1px solid var(--bsp-blog-border, #e5e5e5);
}

.bsp-blog--cotton .bsp-blog__widgets .widget {
  margin: 0 0 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--bsp-blog-border, #e5e5e5);
}

.bsp-blog--cotton .bsp-blog__widgets .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.bsp-blog--cotton .bsp-blog__widgets .widget-title {
  margin: 0 0 16px;
  color: var(--bsp-blog-title, #111111);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__widgets .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bsp-blog--cotton .bsp-blog__widgets .widget li {
  margin: 0 0 10px;
}

.bsp-blog--cotton .bsp-blog__widgets .widget a {
  color: var(--bsp-blog-text, #6b6b6b);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__widgets .widget a:hover {
  color: var(--bsp-blog-accent, #111111);
}

.bsp-blog--cotton .bsp-blog__widgets .widget input[type="search"],
.bsp-blog--cotton .bsp-blog__widgets .widget input[type="text"],
.bsp-blog--cotton .bsp-blog__widgets .widget select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--bsp-blog-border, #e5e5e5);
  border-radius: 0;
  background: #ffffff;
  color: var(--bsp-blog-title, #111111);
  font-size: 14px;
}

.bsp-blog--cotton .bsp-blog__widgets .widget button,
.bsp-blog--cotton .bsp-blog__widgets .widget input[type="submit"] {
  margin-top: 10px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--bsp-blog-accent, #111111);
  border-radius: 0;
  background: var(--bsp-blog-accent, #111111);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__widgets .widget button:hover,
.bsp-blog--cotton .bsp-blog__widgets .widget input[type="submit"]:hover {
  background: transparent;
  color: var(--bsp-blog-accent, #111111);
}

/* Single post */
.bsp-blog--cotton.bsp-blog--single .bsp-blog__single-header {
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid var(--bsp-blog-border, #e5e5e5);
}

.bsp-blog--cotton .bsp-blog__single-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bsp-blog--cotton .bsp-blog__single-category {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--bsp-blog-border, #e5e5e5);
  border-radius: 0;
  background: transparent;
  color: var(--bsp-blog-accent, #111111);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__single-category:hover {
  background: var(--bsp-blog-accent, #111111);
  border-color: var(--bsp-blog-accent, #111111);
  color: #ffffff;
}

.bsp-blog--cotton .bsp-blog__single-title {
  margin: 0 0 16px;
  color: var(--bsp-blog-title, #111111);
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.bsp-blog--cotton .bsp-blog__single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--bsp-blog-muted, #6b6b6b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__single-date,
.bsp-blog--cotton .bsp-blog__single-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bsp-blog--cotton .bsp-blog__single-image {
  margin: 0 0 clamp(24px, 3vw, 36px);
  overflow: hidden;
}

.bsp-blog--cotton .bsp-blog__single-image img {
  display: block;
  width: 100%;
  height: auto;
}

.bsp-blog--cotton .bsp-blog__single-content {
  color: var(--bsp-blog-text, #6b6b6b);
  font-size: 16px;
  line-height: 1.75;
}

.bsp-blog--cotton .bsp-blog__single-content > :first-child {
  margin-top: 0;
}

.bsp-blog--cotton .bsp-blog__single-content > :last-child {
  margin-bottom: 0;
}

.bsp-blog--cotton .bsp-blog__single-content h2,
.bsp-blog--cotton .bsp-blog__single-content h3,
.bsp-blog--cotton .bsp-blog__single-content h4 {
  color: var(--bsp-blog-title, #111111);
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  line-height: 1.3;
  margin: 1.6em 0 0.7em;
}

.bsp-blog--cotton .bsp-blog__single-content h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.bsp-blog--cotton .bsp-blog__single-content h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

.bsp-blog--cotton .bsp-blog__single-content a {
  color: var(--bsp-blog-accent, #111111);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bsp-blog--cotton .bsp-blog__single-content a:hover {
  opacity: 0.7;
}

.bsp-blog--cotton .bsp-blog__single-content ul,
.bsp-blog--cotton .bsp-blog__single-content ol {
  padding-left: 1.25rem;
}

.bsp-blog--cotton .bsp-blog__single-content blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 3px solid var(--bsp-blog-accent, #111111);
  background: #f7f7f7;
  color: var(--bsp-blog-title, #111111);
}

.bsp-blog--cotton .bsp-blog__single-footer {
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: 20px;
  border-top: 1px solid var(--bsp-blog-border, #e5e5e5);
}

.bsp-blog--cotton .bsp-blog__single-tags-label {
  margin-right: 8px;
  color: var(--bsp-blog-title, #111111);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__single-tags a {
  display: inline-block;
  margin: 4px 6px 4px 0;
  padding: 5px 12px;
  border: 1px solid var(--bsp-blog-border, #e5e5e5);
  border-radius: 0;
  background: transparent;
  color: var(--bsp-blog-text, #6b6b6b);
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__single-tags a:hover {
  background: var(--bsp-blog-accent, #111111);
  border-color: var(--bsp-blog-accent, #111111);
  color: #ffffff;
}

.bsp-blog--cotton .bsp-blog__single-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: clamp(24px, 3vw, 32px);
  padding-top: 20px;
  border-top: 1px solid var(--bsp-blog-border, #e5e5e5);
}

.bsp-blog--cotton .bsp-blog__single-share-label {
  color: var(--bsp-blog-title, #111111);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__single-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bsp-blog--cotton .bsp-blog__single-share-link {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--bsp-blog-border, #e5e5e5);
  color: var(--bsp-blog-text, #6b6b6b);
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__single-share-link:hover {
  background: var(--bsp-blog-accent, #111111);
  border-color: var(--bsp-blog-accent, #111111);
  color: #ffffff;
}

/* Post navigation */
.bsp-blog--cotton .bsp-blog__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--bsp-blog-border, #e5e5e5);
}

.bsp-blog--cotton .bsp-blog__nav-link {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--bsp-blog-border, #e5e5e5);
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__nav-link:hover {
  border-color: var(--bsp-blog-accent, #111111);
  background: #fafafa;
}

.bsp-blog--cotton .bsp-blog__nav-link--next {
  text-align: right;
}

.bsp-blog--cotton .bsp-blog__nav-label {
  display: block;
  margin-bottom: 6px;
  color: var(--bsp-blog-muted, #6b6b6b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bsp-blog--cotton .bsp-blog__nav-title {
  display: block;
  color: var(--bsp-blog-title, #111111);
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

/* No results */
.bsp-blog--cotton .bsp-blog__no-results {
  padding: clamp(24px, 4vw, 40px) 0;
  text-align: center;
}

.bsp-blog--cotton .bsp-blog__no-results .page-title {
  margin: 0 0 12px;
  color: var(--bsp-blog-title, #111111);
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.bsp-blog--cotton .bsp-blog__no-results p {
  color: var(--bsp-blog-text, #6b6b6b);
}

/* Comments */
.bsp-blog--cotton .bsp-blog__main .comment-respond,
.bsp-blog--cotton .bsp-blog__main .comments-area {
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--bsp-blog-border, #e5e5e5);
}

.bsp-blog--cotton .bsp-blog__main .comments-title,
.bsp-blog--cotton .bsp-blog__main .comment-reply-title {
  color: var(--bsp-blog-title, #111111);
  font-family: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
}

.bsp-blog--cotton .bsp-blog__main .comment-form input[type="text"],
.bsp-blog--cotton .bsp-blog__main .comment-form input[type="email"],
.bsp-blog--cotton .bsp-blog__main .comment-form input[type="url"],
.bsp-blog--cotton .bsp-blog__main .comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--bsp-blog-border, #e5e5e5);
  border-radius: 0;
}

.bsp-blog--cotton .bsp-blog__main .form-submit input[type="submit"] {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--bsp-blog-accent, #111111);
  border-radius: 0;
  background: var(--bsp-blog-accent, #111111);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.bsp-blog--cotton .bsp-blog__main .form-submit input[type="submit"]:hover {
  background: transparent;
  color: var(--bsp-blog-accent, #111111);
}

@media (max-width: 991px) {
  .bsp-blog--cotton .bsp-blog__layout,
  .bsp-blog--cotton.bsp-blog--right-sidebar .bsp-blog__layout {
    grid-template-columns: 1fr;
  }

  .bsp-blog--cotton .bsp-blog__sidebar {
    position: static;
    order: 2;
    padding: clamp(24px, 4vw, 32px) 0 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--bsp-blog-border, #e5e5e5);
  }

  .bsp-blog--cotton.bsp-blog--left-sidebar .bsp-blog__sidebar {
    padding: clamp(24px, 4vw, 32px) 0 0;
    border-right: 0;
  }

  .bsp-blog--cotton .bsp-blog__main {
    order: 1;
  }

  .bsp-blog--cotton .bsp-blog__posts,
  .bsp-blog--cotton.bsp-blog--fullwidth .bsp-blog__posts {
    grid-template-columns: 1fr;
  }

  .bsp-blog--cotton .bsp-blog__nav {
    grid-template-columns: 1fr;
  }

  .bsp-blog--cotton .bsp-blog__nav-link--next {
    text-align: left;
  }

  .bsp-blog--cotton .bsp-blog__hero-content {
    align-items: center;
    text-align: center;
  }

  .bsp-blog--cotton .bsp-blog__hero-title,
  .bsp-blog--cotton .bsp-blog__hero-description {
    max-width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bsp-blog--cotton.bsp-blog--fullwidth .bsp-blog__posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
