/* Styles for headings */
#living-room-makeover-h1,
#blog-heading-primary {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #2e2e2e;
  line-height: 1.2;
  text-align: center;
  font-family: "Istok Web", sans-serif;
}
a {
  text-decoration: none;
  color: #2e2e2e;
}
a:hover {
  color: #980a0a;
}

#living-room-makeover-h2 {
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #2e2e2e;
  line-height: 1.3;
  font-family: "Istok Web", sans-serif;
}

#living-room-makeover-h3 {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #2e2e2e;
  line-height: 1.2;
  font-family: "Istok Web", sans-serif;
}

/* Style for paragraphs */
.living-room-makeover-p {
  font-size: 1.4em;
  line-height: 1.7;
  margin-bottom: 1em;
  color: #2e2e2e;
  font-family: "Istok Web", sans-serif;
}

/* Style for strong */
.living-room-makeover-strong {
  color: #222;
  font-weight: bold;
  font-family: "Istok Web", sans-serif;
}

/* Style for lists */
.living-room-makeover-ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1em;
}

.living-room-makeover-ul li {
  margin-bottom: 0.5em;
  font-size: 1.4em;
  line-height: 1.7;
  color: #2e2e2e;
  font-family: "Istok Web", sans-serif;
}

/* Style for the main content wrapper */
#living-room-main-content-wrapper {
  margin: 0 auto;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Style for article */
#living-room-article {
  margin-bottom: 2em;
}

/* Style for section */
.living-room-section {
  margin-bottom: 2em;
}

/* Style for image */
.living-room-post-image {
  margin-bottom: 1em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 75%;
}

.living-room-post-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style for breadcrumb */
.living-room-breadcrumb {
  list-style: none;
  padding: 10px 0 10px 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  font-size: 0.9em;
}

.living-room-breadcrumb li {
  display: inline;
  padding: 0 8px;
}

.living-room-breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  margin-right: -10px;
  content: ">";
  color: #999;
}

.living-room-breadcrumb li a {
  color: #0078d7;
  text-decoration: none;
}

.living-room-breadcrumb li a:hover {
  text-decoration: underline;
}

.living-room-breadcrumb li.active a {
  color: #333;
  font-weight: bold;
}

/* Style for FAQ section */
.living-room-faqs {
  margin-top: 2em;
}

.living-room-faq {
  margin-bottom: 1em;
}

.living-room-faq dt {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0.5em 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  font-family: "Istok Web", sans-serif;
  color: #2e2e2e;
}

.living-room-faq dt::after {
  content: "+";
  font-size: 1.2em;
  color: #0078d7;
}

.living-room-faq dt.active::after {
  content: "-";
}

.living-room-faq dd {
  padding: 0.5em 0;
  margin: 0.5em 0;
  line-height: 1.7;
  color: #2e2e2e;
  display: none;
  padding-left: 20px;
  font-family: "Istok Web", sans-serif;
  font-size: 1.4em;
  background-color: #f9f9f9;
}

.living-room-faq dd.active {
  display: block;
}

/* Clearfix for content alignment */
.living-room-post_content::after {
  content: "";
  display: table;
  clear: both;
}
a {
  text-decoration: none;
}

a.url-no-design {
  text-decoration: none;
  color: #980a0a;
}

.living-room-link {
  color: #980a0a;
}

.blog-main {
  display: grid;
  place-items: center;
  margin: 2rem 0;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}

.card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: #ece9e6;
  background: linear-gradient(to right, #ffffff, #ece9e6);
}

.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tag {
  align-self: flex-start;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  font-size: 0.75rem;
}

.tag + .tag {
  margin-left: 0.5em;
}

.tag-blue {
  background: #56ccf2;
  background: linear-gradient(to bottom, #2f80ed, #56ccf2);
  color: #fafafa;
}

.tag-brown {
  background: #d1913c;
  background: linear-gradient(to bottom, #ffd194, #d1913c);
  color: #fafafa;
}

.tag-red {
  background: #cb2d3e;
  background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}

.card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.user {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.user__image {
  border-radius: 50%;
  width: 2.5rem;
  height: auto;
}

.user__info > small {
  color: #666;
}
.user__info > h5, .user__info > p {
  margin: 5px 0;
}

.blog-container .card h4 {
  margin: 1rem 0;
}
