/*
 Theme Name:   Divi Child
 Theme URI:    https://yourwebsite.com
 Description:  Child theme for Divi
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     Divi
 Version:      1.0.0
*/

/* Import parent theme styles */
@import url("../Divi/style.css");

/* ============================
   Tag styles – LIGHT post template
============================ */
.blog-template-light .post-tags {
  margin-top: 10px;
}

.blog-template-light .post-tags strong {
  color: #111;
  font-weight: 600;
}

.blog-template-light .tag-link {
  display: inline-block;
  background-color: #f0f0f0;
  color: #333;
  padding: 6px 12px;
  margin: 4px 6px 0 0;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-template-light .tag-link:hover {
  background-color: #333;
  color: #fff;
}


/* ============================
   Tag styles – DARK post template
============================ */
.blog-template-dark .post-tags {
  margin-top: 10px;
}

.blog-template-dark .post-tags strong {
  color: #fff;
  font-weight: 600;
}

.blog-template-dark .tag-link {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 6px 12px;
  margin: 4px 6px 0 0;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-template-dark .tag-link:hover {
  background-color: #fff;
  color: #000;
}