@charset "UTF-8";
.dd-blog,
.dd-post {
  --blog-navy: #071a32;
  --blog-deep: #020b16;
  --blog-blue: #0d4fd1;
  --blog-bright: #2187ff;
  --blog-orange: #f0a714;
  --blog-light: #f6f9fc;
  --blog-text: #183447;
  --blog-muted: #4c6577;
  --blog-line: #d8e5ef;
  background: #fff;
  color: var(--blog-text);
}

.dd-blog *,
.dd-blog *::before,
.dd-blog *::after,
.dd-post *,
.dd-post *::before,
.dd-post *::after {
  box-sizing: border-box;
}

.dd-blog h1,
.dd-blog h2,
.dd-blog h3,
.dd-blog h4,
.dd-blog p,
.dd-post h1,
.dd-post h2,
.dd-post h3,
.dd-post h4,
.dd-post p {
  margin: 0;
}

.dd-blog-hero,
.dd-blog-categories,
.dd-blog-featured,
.dd-blog-list,
.dd-blog-band,
.dd-post-hero,
.dd-post-cover,
.dd-post-main,
.dd-post-related {
  display: flex;
  justify-content: center;
}

.dd-blog-kicker {
  color: var(--blog-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dd-blog-hero {
  position: relative;
  min-height: 560px;
  padding: 176px clamp(16px, 6vw, 112px) 96px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(140deg, #2187ff 0%, #0e4ed7 38%, #071a32 76%, #020912 100%);
}

.dd-blog-hero::before,
.dd-blog-hero::after,
.dd-post-hero::before,
.dd-blog-band::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.dd-blog-hero::before,
.dd-post-hero::before {
  width: 82vw;
  height: 47vw;
  right: -18vw;
  top: -17vw;
  border-radius: 0 0 0 100%;
  background: rgba(0, 7, 16, 0.72);
  transform: rotate(-6deg);
}

.dd-blog-hero::after {
  width: min(680px, 62vw);
  aspect-ratio: 78.96/17.66;
  left: 0;
  bottom: 0;
  background: url("../images/docudocu-decor/onda-azul-degradado.svg") left bottom/contain no-repeat;
  opacity: 0.25;
}

.dd-blog-hero .content {
  position: relative;
  z-index: 1;
}

.dd-blog-hero h1 {
  max-width: 980px;
  margin-top: 16px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.dd-blog-hero h1 span,
.dd-blog-band h2 span {
  color: var(--blog-orange);
}

.dd-blog-hero__lead {
  max-width: 820px;
  margin-top: 24px !important;
  color: #d7e8ff;
  font-size: 21px;
  line-height: 1.45;
}

.dd-blog-search {
  display: flex;
  gap: 10px;
  max-width: 720px;
  margin-top: 34px;
}

.dd-blog-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font: inherit;
}

.dd-blog-search input::-moz-placeholder {
  color: #d7e8ff;
}

.dd-blog-search input::placeholder {
  color: #d7e8ff;
}

.dd-blog-search input:focus {
  border-color: var(--blog-orange);
  box-shadow: 0 0 0 3px rgba(240, 167, 20, 0.16);
}

.dd-blog-search button,
.dd-post-sidebar__cta a {
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 8px;
  color: var(--blog-navy);
  background: var(--blog-orange);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dd-blog-categories {
  padding: 28px clamp(16px, 6vw, 112px);
  background: var(--blog-light);
}

.dd-blog-categories .content {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.dd-blog-categories a {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid var(--blog-line);
  border-radius: 999px;
  color: var(--blog-muted);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.dd-blog-categories a:hover,
.dd-blog-categories a.is-active {
  border-color: var(--blog-orange);
  color: var(--blog-navy);
  background: var(--blog-orange);
}

.dd-blog-featured {
  padding: 72px clamp(16px, 6vw, 112px) 40px;
  background: var(--blog-light);
}

.dd-blog-list {
  padding: 56px clamp(16px, 6vw, 112px) 104px;
  background: var(--blog-light);
}

.dd-blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--blog-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 26, 50, 0.08);
}

.dd-blog-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 390px;
}

.dd-blog-card__media {
  position: relative;
  display: flex;
  min-height: 220px;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
}

.dd-blog-card__media::before,
.dd-post-cover__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.52;
}

.dd-blog-card__media img,
.dd-post-cover__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dd-blog-tone {
  background: linear-gradient(135deg, var(--blog-bright), #0a2b7a);
}

.dd-blog-tone--asesorias,
.dd-blog-tone--comparativas {
  background: linear-gradient(135deg, #234bd8, #071a32);
}

.dd-blog-tone--verifactu {
  background: linear-gradient(135deg, #2187ff, #0e4ed7 48%, #071a32);
}

.dd-blog-tone--rrhh,
.dd-blog-tone--control-horario {
  background: linear-gradient(135deg, #28a7db, #0d4fd1 54%, #071a32);
}

.dd-blog-tone--autodocu {
  background: linear-gradient(135deg, #0d4fd1, #06152a);
}

.dd-blog-card__mark {
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
}

.dd-blog-card__category {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 18, 36, 0.32);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.dd-blog-card__body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.dd-blog-card--featured .dd-blog-card__body {
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.dd-blog-card__title {
  color: var(--blog-navy);
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
}

.dd-blog-card--featured .dd-blog-card__title {
  margin-top: 12px;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.02;
}

.dd-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.dd-blog-card__title a:hover {
  color: var(--blog-blue);
}

.dd-blog-card__excerpt {
  margin-top: 16px !important;
  color: var(--blog-muted);
  font-size: 16px;
  line-height: 1.5;
}

.dd-blog-card--featured .dd-blog-card__excerpt {
  font-size: 18px;
}

.dd-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #7b8c9f;
  font-size: 13px;
  font-weight: 700;
}

.dd-blog-card__meta a {
  margin-left: auto;
  color: var(--blog-blue);
  font-weight: 800;
  text-decoration: none;
}

.dd-blog-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.dd-blog-list__head h2,
.dd-post-related h2 {
  color: var(--blog-navy);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
}

.dd-blog-list__head span {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blog-blue);
  background: #eaf2ff;
  font-size: 13px;
  font-weight: 800;
}

.dd-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dd-blog-grid .dd-blog-card {
  display: flex;
  flex-direction: column;
}

.dd-blog-grid .dd-blog-card__body {
  flex: 1;
}

.dd-blog-grid .dd-blog-card__meta {
  margin-top: auto;
  padding-top: 24px;
}

@media (min-width: 1101px) {
  .dd-blog-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .dd-blog-grid .dd-blog-card {
    grid-column: span 2;
  }
  .dd-blog-grid .dd-blog-card:last-child:nth-child(3n+1) {
    grid-column: 3/span 2;
  }
  .dd-blog-grid .dd-blog-card:nth-last-child(2):nth-child(3n+1) {
    grid-column: 2/span 2;
  }
  .dd-blog-grid .dd-blog-card:nth-last-child(2):nth-child(3n+1) + .dd-blog-card {
    grid-column: 4/span 2;
  }
}
.dd-blog-empty {
  padding: 52px;
  border: 1px solid var(--blog-line);
  border-radius: 12px;
  text-align: center;
  background: #fff;
}

.dd-blog-empty h2 {
  color: var(--blog-navy);
}

.dd-blog-empty p {
  margin: 12px 0 24px !important;
  color: var(--blog-muted);
}

.dd-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.dd-blog-pagination .page-numbers {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blog-line);
  border-radius: 8px;
  color: var(--blog-muted);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.dd-blog-pagination .current {
  border-color: var(--blog-orange);
  color: var(--blog-navy);
  background: var(--blog-orange);
}

.dd-blog-band {
  position: relative;
  padding: 72px clamp(16px, 6vw, 112px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, #0d51d8 0%, #071a32 58%, #020b16 100%);
}

.dd-blog-band::before {
  width: 62vw;
  height: 24vw;
  right: -24vw;
  top: -16vw;
  border-radius: 0 0 0 100%;
  background: rgba(0, 0, 0, 0.5);
}

.dd-blog-band .content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dd-blog-band h2 {
  max-width: 760px;
  margin-top: 10px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.dd-blog-band .btn {
  flex: 0 0 auto;
}

/* Single post */
.dd-post-hero {
  position: relative;
  padding: 172px clamp(16px, 6vw, 112px) 86px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(140deg, #2187ff 0%, #0e4ed7 38%, #071a32 76%, #020912 100%);
}

.dd-post-hero .content {
  position: relative;
  z-index: 1;
}

.dd-post-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 34px;
  color: #d7e8ff;
  font-size: 14px;
  font-weight: 700;
}

.dd-post-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.dd-post-breadcrumb a:hover {
  color: var(--blog-orange);
}

.dd-post-hero h1 {
  max-width: 1040px;
  margin-top: 14px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 800;
  line-height: 0.98;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.dd-post-hero__lead {
  max-width: 820px;
  margin-top: 24px !important;
  color: #d7e8ff;
  font-size: 22px;
  line-height: 1.4;
}

.dd-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: #d7e8ff;
  font-size: 14px;
}

.dd-post-meta > span:nth-child(n+3) {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.dd-post-meta strong,
.dd-post-meta small {
  display: block;
}

.dd-post-meta strong {
  color: #fff;
}

.dd-post-meta small {
  margin-top: 3px;
}

.dd-post-avatar {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blog-navy);
  background: var(--blog-orange);
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.dd-post-cover {
  padding: 52px clamp(16px, 6vw, 112px) 0;
  background: #fff;
}

.dd-post-cover__visual {
  position: relative;
  display: flex;
  min-height: clamp(320px, 42vw, 600px);
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(28px, 6vw, 72px);
  border-radius: 14px;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(7, 26, 50, 0.14);
}

.dd-post-cover__visual > span,
.dd-post-cover__visual > strong {
  position: relative;
  z-index: 1;
}

.dd-post-cover__visual > span {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 18, 36, 0.25);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dd-post-cover__visual > strong {
  max-width: 820px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.dd-post-main {
  padding: 72px clamp(16px, 6vw, 112px) 104px;
  background: #fff;
}

.dd-post-main > .content {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  gap: clamp(42px, 6vw, 88px);
  justify-content: center;
  align-items: start;
}

.dd-post-sidebar {
  position: sticky;
  top: 112px;
}

.dd-post-sidebar > p {
  color: var(--blog-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dd-post-sidebar nav {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-left: 2px solid var(--blog-line);
}

.dd-post-sidebar nav a {
  padding: 7px 0 7px 16px;
  color: var(--blog-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.dd-post-sidebar nav a:hover {
  color: var(--blog-blue);
}

.dd-post-sidebar__cta {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  background: var(--blog-navy);
}

.dd-post-sidebar__cta span {
  color: #d7e8ff;
  font-size: 13px;
  line-height: 1.4;
}

.dd-post-sidebar__cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 14px;
  font-size: 13px;
  text-decoration: none;
}

.dd-post-content {
  min-width: 0;
  color: var(--blog-text);
  font-size: 18px;
  line-height: 1.72;
}

.dd-post-content > p:first-child {
  color: var(--blog-navy);
  font-size: 22px;
  line-height: 1.55;
}

.dd-post-content h2 {
  scroll-margin-top: 110px;
  margin: 52px 0 14px;
  color: var(--blog-navy);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
}

.dd-post-content h3 {
  margin: 8px 0 14px;
  color: var(--blog-blue);
  font-family: "Quicksand", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.dd-post-content p {
  margin: 0 0 18px;
}

.dd-post-content a {
  color: var(--blog-blue);
}

.dd-post-content ul,
.dd-post-content ol {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding-left: 24px;
}

.dd-post-content li::marker {
  color: var(--blog-orange);
  font-weight: 900;
}

.dd-post-content blockquote {
  position: relative;
  margin: 34px 0;
  padding: 26px 28px 26px 34px;
  border: 0;
  border-left: 5px solid var(--blog-orange);
  border-radius: 0 10px 10px 0;
  color: var(--blog-navy);
  background: var(--blog-light);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.dd-post-content blockquote p {
  margin: 0;
}

.dd-post-points,
.dd-post-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 34px;
}

.dd-post-point,
.dd-post-module {
  padding: 22px;
  border: 1px solid var(--blog-line);
  border-radius: 10px;
  background: var(--blog-light);
}

.dd-post-point > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 9px;
  color: var(--blog-navy);
  background: var(--blog-orange);
  font-weight: 900;
}

.dd-post-point strong,
.dd-post-module strong {
  display: block;
  color: var(--blog-navy);
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.dd-post-point p,
.dd-post-module p {
  margin: 8px 0 0;
  color: var(--blog-muted);
  font-size: 14px;
  line-height: 1.5;
}

.dd-post-module {
  background: #fff;
}

.dd-post-module strong {
  color: var(--blog-blue);
}

.dd-post-table-wrap {
  margin: 24px 0 36px;
  overflow-x: auto;
  border: 1px solid var(--blog-line);
  border-radius: 10px;
}

.dd-post-content table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.dd-post-content th,
.dd-post-content td {
  padding: 16px;
  border-bottom: 1px solid var(--blog-line);
  text-align: left;
  vertical-align: top;
}

.dd-post-content thead th {
  color: #fff;
  background: var(--blog-navy);
}

.dd-post-content tbody th {
  color: var(--blog-navy);
}

.dd-post-content tbody tr:nth-child(even) {
  background: var(--blog-light);
}

.dd-post-content tbody tr:last-child th,
.dd-post-content tbody tr:last-child td {
  border-bottom: 0;
}

.dd-post-steps {
  counter-reset: dd-step;
  display: grid !important;
  gap: 12px !important;
  margin: 24px 0 34px !important;
  padding: 0 !important;
  list-style: none;
}

.dd-post-steps li {
  counter-increment: dd-step;
  position: relative;
  min-height: 74px;
  padding: 18px 18px 18px 72px;
  border: 1px solid var(--blog-line);
  border-radius: 10px;
  background: var(--blog-light);
}

.dd-post-steps li::before {
  content: counter(dd-step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--blog-blue);
  font-family: "Quicksand", sans-serif;
  font-size: 23px;
  font-weight: 900;
}

.dd-post-steps strong {
  display: block;
  color: var(--blog-navy);
}

.dd-post-steps span {
  display: block;
  color: var(--blog-muted);
  font-size: 15px;
}

.dd-post-inline-cta {
  position: relative;
  margin: 38px 0;
  overflow: hidden;
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(120deg, var(--blog-blue), var(--blog-navy));
}

.dd-post-inline-cta h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
}

.dd-post-inline-cta h3 span {
  color: var(--blog-orange);
}

.dd-post-inline-cta p {
  margin: 8px 0 0;
  color: #d7e8ff;
  font-size: 15px;
}

.dd-post-faq {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.dd-post-faq details {
  overflow: hidden;
  border: 1px solid var(--blog-line);
  border-radius: 10px;
  background: #fff;
}

.dd-post-faq summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--blog-navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.dd-post-faq summary::-webkit-details-marker {
  display: none;
}

.dd-post-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 14px;
  color: var(--blog-blue);
  font-size: 25px;
}

.dd-post-faq details[open] summary::after {
  content: "−";
}

.dd-post-faq details p {
  padding: 0 20px 20px;
  color: var(--blog-muted);
  font-size: 15px;
  line-height: 1.65;
}

.dd-post-context,
.dd-post-sources {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--blog-line);
  border-radius: 12px;
  background: var(--blog-light);
}

.dd-post-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
}

.dd-post-context strong,
.dd-post-sources h2 {
  color: var(--blog-navy);
}

.dd-post-sources h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.dd-post-sources p,
.dd-post-sources ul {
  margin-bottom: 12px;
}

.dd-post-sources li + li {
  margin-top: 8px;
}

.dd-post-author {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--blog-line);
  border-radius: 12px;
  background: var(--blog-light);
}

.dd-post-author strong {
  color: var(--blog-navy);
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
}

.dd-post-author p {
  margin: 4px 0 0;
  color: var(--blog-muted);
  font-size: 14px;
  line-height: 1.5;
}

.dd-post-author small {
  display: block;
  margin-top: 6px;
  color: var(--blog-muted);
}

.dd-post-related {
  padding: 72px clamp(16px, 6vw, 112px);
  background: var(--blog-light);
}

.dd-post-related h2 {
  margin-bottom: 28px;
}

@media (max-width: 1100px) {
  .dd-blog-card--featured {
    grid-template-columns: 1fr;
  }
  .dd-blog-card--featured .dd-blog-card__media {
    min-height: 340px;
  }
  .dd-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dd-post-main > .content {
    grid-template-columns: 1fr;
  }
  .dd-post-sidebar {
    position: static;
    padding: 22px;
    border: 1px solid var(--blog-line);
    border-radius: 10px;
    background: var(--blog-light);
  }
  .dd-post-sidebar__cta {
    display: none;
  }
}
@media (max-width: 768px) {
  .dd-post-breadcrumb {
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-bottom: 24px;
    font-size: 13px;
  }
  .dd-post-breadcrumb__current-separator,
  .dd-post-breadcrumb__current {
    display: none;
  }
  .dd-blog-hero,
  .dd-post-hero {
    padding: 126px 16px 64px;
  }
  .dd-blog-hero {
    min-height: auto;
  }
  .dd-blog-hero h1,
  .dd-post-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .dd-blog-hero__lead,
  .dd-post-hero__lead {
    font-size: 18px;
  }
  .dd-blog-search {
    flex-direction: column;
  }
  .dd-blog-search button {
    min-height: 50px;
  }
  .dd-blog-categories {
    padding: 20px 16px;
  }
  .dd-blog-featured,
  .dd-blog-list,
  .dd-post-main,
  .dd-post-related {
    padding-left: 16px;
    padding-right: 16px;
  }
  .dd-blog-featured {
    padding-top: 48px;
  }
  .dd-blog-list {
    padding-top: 42px;
    padding-bottom: 72px;
  }
  .dd-blog-card--featured .dd-blog-card__media {
    min-height: 240px;
  }
  .dd-blog-card--featured .dd-blog-card__body {
    padding: 28px;
  }
  .dd-blog-grid {
    grid-template-columns: 1fr;
  }
  .dd-blog-band {
    padding: 56px 16px;
  }
  .dd-blog-band .content {
    align-items: stretch;
    flex-direction: column;
  }
  .dd-blog-band .btn {
    width: 100%;
  }
  .dd-post-meta {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .dd-post-meta > span:nth-child(n+3) {
    width: calc(50% - 8px);
    padding: 0;
    border: 0;
  }
  .dd-post-cover {
    padding: 28px 16px 0;
  }
  .dd-post-cover__visual {
    min-height: 300px;
    padding: 68px 28px 32px 28px;
  }
  .dd-post-main {
    padding-top: 48px;
    padding-bottom: 72px;
  }
  .dd-post-sidebar {
    display: none;
  }
  .dd-post-content {
    font-size: 17px;
  }
  .dd-post-content > p:first-child {
    font-size: 20px;
  }
  .dd-post-points,
  .dd-post-modules {
    grid-template-columns: 1fr;
  }
  .dd-post-author {
    align-items: flex-start;
  }
}

/* Mobile section rhythm */
@media (max-width: 47.99rem) {
  .dd-blog-list {
    padding-bottom: 4rem;
  }
}

/*# sourceMappingURL=blog.css.map */
