/* 
Theme Name: VK New Dev 2
Theme URI: https://www.vklfs.com/
Description: A modern, pastel-themed WordPress theme with soft pink aesthetic and card-based layouts
Version: 2.0
Author: VK
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 CSS Variables (Design Tokens)
1.0 Normalize
2.0 Typography
3.0 Forms & Buttons
4.0 Navigation
5.0 Layout (Global Structure)
   5.1 Header
   5.2 Posts / Single
   5.3 Pages
   5.4 Footer
   5.5 Sidebar
6.0 Category / Archive
7.0 Comments
8.0 Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
0.0 CSS Variables (Design Tokens)
--------------------------------------------------------------*/
:root {
  /* 主色調 - 柔和粉彩 */
  --primary: orange;
  --primary-dark: orange;
  --primary-light: orange;
  --secondary: orange;
  --accent: #FFDAC1;
  --light: #E2F0CB;
  --dark: #B5EAD7;

  /* 中性色 */
  --text: #5E5E5E;
  --text-light: #999;
  --text-dark: #444;
  --bg: #FFF5F7;
  --white: #ffffff;
  --border: #f0ecec;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);

  /* 字間 & 行高 */
  --article-letter-spacing: 1px;
  --article-line-height: 1.7;

  /* 圓角 */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  /* 過渡 */
  --transition: 0.3s ease;
}


/*--------------------------------------------------------------
1.0 Normalize
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', 'PingFang TC', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: var(--article-line-height);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff9aa2' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

main { display: block; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

p { margin: 0 0 1.25rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: none;
  border-top: 2px solid var(--border);
  margin: 2rem 0;
}

/*--------------------------------------------------------------
2.0 Typography (Block Editor / Content)
--------------------------------------------------------------*/
.entry-content {
  font-size: 1.05rem;
  letter-spacing: var(--article-letter-spacing);
  line-height: var(--article-line-height);
  color: var(--text);
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.wp-block-quote {
  background: var(--white);
  border-left: 5px solid var(--primary);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  font-style: italic;
  color: var(--text-dark);
}

.wp-block-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.wp-block-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/*--------------------------------------------------------------
3.0 Forms & Buttons
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.85em 2em;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

textarea,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"] {
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75em 1em;
  width: 100%;
  transition: border-color var(--transition);
  font-family: inherit;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 154, 162, 0.15);
}

/*--------------------------------------------------------------
4.0 Navigation
--------------------------------------------------------------*/

/* Header Navigation (designed for .custom-header) */
.custom-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  text-align: center;
  padding: 1.25rem 20px 0.75rem;
  box-shadow: 0 4px 20px rgba(255, 154, 162, 0.25);
  position: relative;
  z-index: 10;
}

img.custom-logo {
  height: 55px;
  width: auto;
  display: inline-block;
  transition: transform var(--transition);
}
img.custom-logo:hover {
  transform: scale(1.05);
}

.site-nav {
  text-align: center;
  padding: 0.5rem 0 0.75rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.nav-list li {
  margin: 0;
  position: relative;
}

.nav-list li a {
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-list li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.nav-list li.current-menu-item a,
.nav-list li.current_page_item a {
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
}

/*--------------------------------------------------------------
5.0 Layout (Global Structure)
--------------------------------------------------------------*/

.site-content-contain {
  max-width: 72rem;
  letter-spacing: var(--article-letter-spacing);
  line-height: var(--article-line-height);
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.wrap {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

#primary.content-area {
  flex: 1;
  min-width: 0; /* prevent flex overflow */
}

/*--------------------------------------------------------------
5.1 Header
--------------------------------------------------------------*/

/* (Already styled in Navigation) */

/*--------------------------------------------------------------
5.2 Posts / Single
--------------------------------------------------------------*/

/* Single post article */
article.post,
article.type-post,
article.page {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.entry-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg);
}

.entry-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.entry-title a {
  color: var(--text-dark);
  transition: color var(--transition);
}

.entry-title a:hover {
  color: var(--primary);
}

.entry-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.entry-meta i {
  color: var(--primary);
}

/* Featured image in single post */
.post-thumbnail img {
  width: auto;
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Post navigation (prev / next) */
.post-navigation {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.post-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.nav-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.nav-title {
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}

.post-navigation a:hover .nav-title {
  color: black;
}

/* No posts message */
.no-posts {
  text-align: center;
  padding: 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Page header */
.page-header .page-title {
  text-align: center;
  margin-bottom: 2rem;
}

/* Page links */
.page-links {
  clear: both;
  margin: 2rem 0;
  font-weight: 700;
}

.page-links a {
  background: var(--bg);
  color: var(--text);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  margin: 0 0.2rem;
  transition: all var(--transition);
}

.page-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/*--------------------------------------------------------------
5.3 Pages (front page / index)
--------------------------------------------------------------*/
.pageContent {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.pageContent .entry-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

/*--------------------------------------------------------------
5.4 Footer
--------------------------------------------------------------*/
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2.5rem;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  margin-bottom: 2rem;
}

.footer-logo img {
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.site-info p {
  margin: 0.3rem 0;
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.6rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
  padding: 0.15rem 0;
}

.footer-menu a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 154, 162, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1rem;
}

.footer-credits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-credits a:hover {
  color: var(--primary-light);
}

/*--------------------------------------------------------------
5.5 Sidebar (Widget Area)
--------------------------------------------------------------*/
.widget-area {
  width: 280px;
  flex-shrink: 0;
}

.widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--bg);
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  color: var(--text);
  transition: color var(--transition);
}

.widget ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/*--------------------------------------------------------------
6.0 Category / Archive
--------------------------------------------------------------*/

/* Category Header */
.category-header {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  position: relative;
}

.category-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.category-title::after {
  content: "";
  display: block;
  margin: 0.75rem auto 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 10px;
}

.category-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--text);
}

/* Category Filter Menu */
.category-filter {
  text-align: center;
  padding: 0 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.category-filter a,
.category-filter .category-btn {
  display: inline-block;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.category-filter a:hover,
.category-filter a:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Highlight current category */
body.category .category-filter a[href*="category"] {
  /* will be matched via class below */
}

.category-filter a.current-cat {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2rem 0;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
}

.article-card:hover .card-image img {
  transform: scale(1.08);
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image .category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  transition: color var(--transition);
  line-height: 1.4;
}

.card-content .card-title a {
  color: inherit;
  text-decoration: none;
}

.article-card:hover .card-title {
  color: var(--primary);
}

.card-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

.card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-meta .meta-item i {
  color: var(--primary);
}

/* Read More Button (for category cards) */
.read-more {
  background: var(--light);
  color: var(--text);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  margin-top: 0.75rem;
  align-self: flex-start;
}

.read-more:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(4px);
}

/* Pagination */
.pagination,
.navigation {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0;
}

.pagination .page-numbers,
.navigation a,
.navigation span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.pagination .page-numbers:hover,
.navigation a:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.pagination .page-numbers.current,
.navigation .current {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* Decorative shapes for category page */
.decoration {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

/*--------------------------------------------------------------
7.0 Comments
--------------------------------------------------------------*/
#comments {
  clear: both;
  padding: 2rem 0 0.5rem;
  margin-top: 2rem;
  border-top: 2px solid var(--bg);
}

.comments-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.comment-list,
.comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-list li:before {
  display: none;
}

.comment-body {
  margin-left: 65px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.comment-author {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 2;
  color: var(--text-dark);
}

.comment-author .avatar {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  left: -65px;
  position: absolute;
  top: 0;
  border: 3px solid var(--bg);
}

.comment-author .says {
  display: none;
}

.comment-metadata {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.comment-metadata a {
  color: var(--text-light);
}

.comment-metadata a:hover {
  color: var(--primary);
}

.comment-content {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.comment-reply-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  transition: color var(--transition);
}

.comment-reply-link:hover {
  color: var(--primary-dark);
}

.reply {
  margin-top: 0.5rem;
}

.children .comment-author .avatar {
  height: 32px;
  width: 32px;
  left: -45px;
}

.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
  border: 3px solid var(--primary);
}

.no-comments,
.comment-awaiting-moderation {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

.comments-pagination {
  margin: 2rem 0;
}

/* Comment Form */
.comment-respond {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.comment-reply-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comment-reply-title small {
  margin-left: 0.5rem;
}

.comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.comment-form textarea,
.comment-form input {
  margin-bottom: 1rem;
}

.form-submit {
  text-align: right;
}

.comment-form #wp-comment-cookies-consent {
  margin: 0 0.5rem 0 0;
}

.comment-form .comment-form-cookies-consent label {
  display: inline;
  font-weight: 400;
}

/*--------------------------------------------------------------
8.0 Media Queries
--------------------------------------------------------------*/

/* Tablet */
@media screen and (max-width: 1024px) {
  .site-content-contain {
    max-width: 95%;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-title {
    font-size: 2.5rem;
  }

  .entry-title {
    font-size: 1.75rem;
  }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
  .site-content-contain {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .wrap {
    flex-direction: column;
  }

  .widget-area {
    width: 100%;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 1.5rem auto;
  }

  .category-title {
    font-size: 2rem;
  }

  .entry-title {
    font-size: 1.5rem;
  }

  article.post,
  article.type-post,
  article.page,
  .pageContent {
    padding: 1.5rem;
    border-radius: var(--radius);
  }

  .custom-header {
    padding: 1rem 15px 0.5rem;
  }

  .nav-list {
    gap: 0;
  }

  .nav-list li a {
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .footer-col {
    min-width: 100%;
  }

  .category-filter {
    gap: 0.4rem;
  }

  .category-filter a {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .card-image {
    height: 180px;
  }

  .comment-body {
    margin-left: 50px;
  }

  .comment-author .avatar {
    height: 38px;
    width: 38px;
    left: -50px;
  }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
  .category-title {
    font-size: 1.75rem;
  }

  .entry-title {
    font-size: 1.3rem;
  }

  article.post,
  article.type-post,
  article.page,
  .pageContent {
    padding: 1.25rem;
  }

  .card-content {
    padding: 1.25rem;
  }

  .card-image {
    height: 160px;
  }

  .site-footer {
    padding: 3rem 0 0;
  }
}
