﻿*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  margin: 0;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* Content image - full-width responsive */
.content-image {
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  display: block;
}
.content .content-image img,
.content-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: unset;
}

/* =============================================
   RESPONSIVE TABLE FIX
   ============================================= */
.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

.table-responsive table {
  width: 100%;
  max-width: 100%;
}

/* Ensure no parent overflow is broken */
.content,
.seo-block__body,
.page-body {
  max-width: 100%;
  overflow-wrap: break-word;
}

.content table,
.seo-block table {
  max-width: 100%;
}

@media (max-width: 768px) {
  .table-responsive table {
    min-width: 540px;
  }
  .table-responsive th,
  .table-responsive td {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
