/*
 Theme Name: Amazon Storage Deals Pro Child
 Theme URI: https://storagediskprices.com
 Description: Child theme for Amazon Storage Deals Pro with landing pages, blog templates, and shortcodes.
 Author: Storage Disk Prices
 Author URI: https://storagediskprices.com
 Template: amazon-storage-deals-pro-patch8
 Version: 1.2.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: asdp-child
*/

/* ==========================================================================
   CHILD THEME STYLES
   ========================================================================== */

/* Import parent theme styles handled by functions.php */

/* ==========================================================================
   PAGE TEMPLATE STYLES
   ========================================================================== */

/* Page Container */
.sdp-page-wrapper {
  background: #000000;
  min-height: 100vh;
}

.sdp-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Page Header */
.sdp-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #333;
}

.sdp-page-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.sdp-page-subtitle {
  color: #888888;
  font-size: 1.1rem;
  margin: 0;
}

/* Breadcrumb Navigation */
.sdp-breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.sdp-breadcrumb a {
  color: #10b981;
  text-decoration: none;
}

.sdp-breadcrumb a:hover {
  text-decoration: underline;
}

.sdp-breadcrumb span {
  color: #666666;
  margin: 0 0.5rem;
}

.sdp-breadcrumb .current {
  color: #999999;
}

/* Page Content Area */
.sdp-page-content {
  color: #cccccc;
  line-height: 1.75;
}

.sdp-page-content h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

.sdp-page-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.sdp-page-content h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.sdp-page-content p {
  margin-bottom: 1rem;
}

.sdp-page-content a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.2s;
}

.sdp-page-content a:hover {
  color: #34d399;
  text-decoration: underline;
}

.sdp-page-content ul,
.sdp-page-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.sdp-page-content li {
  margin-bottom: 0.5rem;
}

.sdp-page-content strong {
  color: #ffffff;
}

/* Intro Text */
.sdp-intro {
  font-size: 1.15rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: #111111;
  border-left: 4px solid #10b981;
  border-radius: 0 6px 6px 0;
}

/* ==========================================================================
   FAQ STYLES
   ========================================================================== */

.sdp-faq-container {
  margin-top: 1.5rem;
}

.sdp-faq-container h2 {
  color: #10b981;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

.sdp-faq-container h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.sdp-faq-item {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.sdp-faq-item:hover {
  border-color: #444;
}

.sdp-faq-item details {
  margin: 0;
}

.sdp-faq-question {
  padding: 1rem 1.25rem;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.sdp-faq-question:hover {
  background: #1a1a1a;
}

.sdp-faq-question::-webkit-details-marker {
  display: none;
}

.sdp-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #10b981;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

details[open] .sdp-faq-question {
  background: #0d0d0d;
  border-bottom: 1px solid #2a2a2a;
}

details[open] .sdp-faq-question::after {
  content: '−';
}

.sdp-faq-answer {
  padding: 1.25rem;
  color: #b0b0b0;
  background: #0a0a0a;
  line-height: 1.7;
}

.sdp-faq-answer p:first-child {
  margin-top: 0;
}

.sdp-faq-answer p:last-child {
  margin-bottom: 0;
}

.sdp-faq-answer ul,
.sdp-faq-answer ol {
  margin: 0.75rem 0;
}

.sdp-faq-answer li {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.sdp-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.sdp-contact-card {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.sdp-contact-card:hover {
  border-color: #10b981;
  transform: translateY(-2px);
}

.sdp-contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.sdp-contact-card p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.sdp-contact-card p:last-child {
  margin-bottom: 0;
}

.sdp-contact-card em {
  color: #777777;
  font-size: 0.85rem;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.sdp-example-box {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.sdp-example-box p:first-child {
  margin-top: 0;
  color: #ffffff;
  font-weight: 600;
}

.sdp-example-box ul {
  margin-bottom: 0.75rem;
}

.sdp-example-box p:last-child {
  margin-bottom: 0;
  color: #10b981;
  font-weight: 600;
}

/* ==========================================================================
   PRIVACY PAGE STYLES
   ========================================================================== */

.sdp-disclosure-box {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888888;
}

.sdp-disclosure-box p:first-child {
  margin-top: 0;
}

.sdp-disclosure-box p:last-child {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #666666;
}

/* ==========================================================================
   CTA BOX
   ========================================================================== */

.sdp-cta-box {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0 2rem;
  text-align: center;
}

.sdp-cta-box h3 {
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
}

.sdp-cta-box p {
  color: #a7f3d0;
  margin: 0 0 1.25rem 0;
}

.sdp-button {
  display: inline-block;
  background: #10b981;
  color: #000000 !important;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}

.sdp-button:hover {
  background: #34d399;
  transform: translateY(-2px);
}

/* ==========================================================================
   BACK TO HOME LINK
   ========================================================================== */

.sdp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.sdp-back-link:hover {
  color: #34d399;
}

.sdp-back-link::before {
  content: '←';
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
  .sdp-page-container {
    padding: 1.5rem 1rem 3rem;
  }
  
  .sdp-page-title {
    font-size: 1.75rem;
  }
  
  .sdp-page-content h2 {
    font-size: 1.3rem;
  }
  
  .sdp-faq-question {
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
  }
  
  .sdp-faq-answer {
    padding: 1rem;
  }
  
  .sdp-contact-methods {
    grid-template-columns: 1fr;
  }
  
  .sdp-cta-box {
    padding: 1.5rem;
    margin: 2rem 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .sdp-page-container {
    padding: 1rem 0.875rem 2rem;
  }
  
  .sdp-page-title {
    font-size: 1.5rem;
  }
  
  .sdp-intro {
    font-size: 1.05rem;
    padding: 1rem 1.15rem;
  }
  
  .sdp-faq-question::after {
    font-size: 1.25rem;
  }
  
  .sdp-button {
    display: block;
    text-align: center;
  }
}

/* ==========================================================================
   BLOG POST STYLES
   ========================================================================== */

/* Blog Post Container */
.sdp-single-post .sdp-blog-post {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Progress Bar */
.sdp-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  z-index: 9999;
}

.sdp-progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #0ea5e9);
  width: 0;
  transition: width 100ms ease;
}

/* Post Header */
.sdp-post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #333;
}

.sdp-post-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #10b981;
  margin-bottom: 1rem;
}

.sdp-post-category a {
  color: inherit;
  text-decoration: none;
}

.sdp-post-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1rem;
}

.sdp-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  color: #888888;
  font-size: 0.9rem;
}

.sdp-post-meta__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sdp-post-meta__item svg {
  width: 16px;
  height: 16px;
  color: #666666;
}

.sdp-post-meta__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sdp-post-meta__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #333;
}

.sdp-post-meta__author-name {
  font-weight: 500;
  color: #ffffff;
}

.sdp-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.5rem;
  background: #1a1a1a;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #888888;
}

/* Featured Image */
.sdp-featured-image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.sdp-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sdp-featured-image figcaption {
  padding: 0.75rem;
  background: #111111;
  font-size: 0.85rem;
  color: #888888;
  text-align: center;
}

/* Blog Content Typography */
.sdp-content {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1.05rem;
}

.sdp-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

.sdp-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.sdp-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.sdp-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.sdp-content p {
  margin-bottom: 1.25rem;
}

.sdp-content a {
  color: #10b981;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.sdp-content a:hover {
  color: #34d399;
  border-bottom-color: currentColor;
}

.sdp-content strong {
  color: #ffffff;
  font-weight: 600;
}

.sdp-content ul,
.sdp-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.sdp-content li {
  margin-bottom: 0.5rem;
}

/* Blockquotes */
.sdp-content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem 1.25rem 2rem;
  background: #111111;
  border-left: 4px solid #10b981;
  border-radius: 0 8px 8px 0;
}

.sdp-content blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 0;
}

/* Code */
.sdp-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #0ea5e9;
}

.sdp-content pre {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow-x: auto;
}

.sdp-content pre code {
  padding: 0;
  background: none;
  border: none;
  font-size: 0.9rem;
  color: #cccccc;
}

/* Tables */
.sdp-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.sdp-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.sdp-content table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  background: #1a1a1a;
  border-bottom: 2px solid #333;
}

.sdp-content table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2a2a2a;
  color: #cccccc;
}

.sdp-content table tbody tr:hover {
  background: #111111;
}

/* ==========================================================================
   CALLOUT BOXES
   ========================================================================== */

.sdp-callout {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid;
}

.sdp-callout__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.sdp-callout__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.sdp-callout__content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.sdp-callout__content p:last-child {
  margin-bottom: 0;
}

/* Info */
.sdp-callout--info {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}
.sdp-callout--info .sdp-callout__icon { background: rgba(14, 165, 233, 0.2); color: #0ea5e9; }
.sdp-callout--info .sdp-callout__title { color: #0ea5e9; }

/* Warning */
.sdp-callout--warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}
.sdp-callout--warning .sdp-callout__icon { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.sdp-callout--warning .sdp-callout__title { color: #f59e0b; }

/* Danger */
.sdp-callout--danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}
.sdp-callout--danger .sdp-callout__icon { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
.sdp-callout--danger .sdp-callout__title { color: #ef4444; }

/* Tip / Pro */
.sdp-callout--tip,
.sdp-callout--pro {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}
.sdp-callout--tip .sdp-callout__icon,
.sdp-callout--pro .sdp-callout__icon { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.sdp-callout--tip .sdp-callout__title,
.sdp-callout--pro .sdp-callout__title { color: #10b981; }

/* ==========================================================================
   PRODUCT CARDS (Blog)
   ========================================================================== */

.sdp-product-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  margin: 1.5rem 0;
  transition: all 0.2s;
}

.sdp-product-card:hover {
  border-color: #10b981;
}

.sdp-product-card__image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sdp-product-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sdp-product-card__content {
  flex: 1;
  min-width: 0;
}

.sdp-product-card__badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.sdp-product-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.sdp-product-card__specs {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 0.5rem;
}

.sdp-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.sdp-product-card__price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.sdp-product-card__price-per-tb {
  font-size: 0.85rem;
  color: #888888;
}

.sdp-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #10b981;
  color: #000000 !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  border-radius: 6px;
  border-bottom: none !important;
  transition: all 0.2s;
}

.sdp-product-card__cta:hover {
  background: #34d399;
  transform: translateY(-2px);
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */

.sdp-newsletter {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  border-radius: 12px;
  text-align: center;
}

.sdp-newsletter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.sdp-newsletter__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.sdp-newsletter__description {
  font-size: 1rem;
  color: #a7f3d0;
  margin: 0 0 1.25rem;
}

.sdp-newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.sdp-newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  color: #ffffff;
}

.sdp-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sdp-newsletter__input:focus {
  outline: none;
  border-color: #10b981;
}

.sdp-newsletter__button {
  padding: 0.75rem 1.5rem;
  background: #10b981;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s;
}

.sdp-newsletter__button:hover {
  background: #34d399;
}

/* ==========================================================================
   SHARE BUTTONS
   ========================================================================== */

.sdp-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 2rem 0;
}

.sdp-share__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888888;
}

.sdp-share__buttons {
  display: flex;
  gap: 0.5rem;
}

.sdp-share__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #888888;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.sdp-share__button:hover {
  background: #10b981;
  border-color: #10b981;
  color: #000000;
}

/* ==========================================================================
   AUTHOR BIO
   ========================================================================== */

.sdp-author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  margin: 2rem 0;
}

.sdp-author-bio__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #333;
}

.sdp-author-bio__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sdp-author-bio__content {
  flex: 1;
}

.sdp-author-bio__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #10b981;
  margin-bottom: 0.25rem;
}

.sdp-author-bio__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.sdp-author-bio__description {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 0.75rem;
}

.sdp-author-bio__links {
  display: flex;
  gap: 0.5rem;
}

.sdp-author-bio__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  color: #888888;
  transition: all 0.2s;
}

.sdp-author-bio__link:hover {
  background: #10b981;
  border-color: #10b981;
  color: #000000;
}

/* ==========================================================================
   RELATED POSTS
   ========================================================================== */

.sdp-related-posts {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.sdp-related-posts__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.5rem;
}

.sdp-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.sdp-related-post {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.sdp-related-post:hover {
  border-color: #10b981;
  transform: translateY(-4px);
}

.sdp-related-post__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.sdp-related-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.sdp-related-post:hover .sdp-related-post__image img {
  transform: scale(1.05);
}

.sdp-related-post__content {
  padding: 1rem;
}

.sdp-related-post__category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #10b981;
  margin-bottom: 0.5rem;
  display: block;
}

.sdp-related-post__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.sdp-related-post__title a {
  color: inherit;
  text-decoration: none;
}

.sdp-related-post__title a:hover {
  color: #10b981;
}

.sdp-related-post__meta {
  font-size: 0.8rem;
  color: #666666;
}

/* ==========================================================================
   POST TAGS
   ========================================================================== */

.sdp-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.sdp-post-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #888888 !important;
  text-decoration: none !important;
  transition: all 0.2s;
}

.sdp-post-tag:hover {
  background: #10b981;
  border-color: #10b981;
  color: #000000 !important;
}

/* ==========================================================================
   BLOG RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  .sdp-single-post .sdp-blog-post {
    padding: 1.5rem 1rem 3rem;
  }
  
  .sdp-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .sdp-product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .sdp-product-card__image {
    width: 100px;
    height: 100px;
  }
  
  .sdp-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .sdp-author-bio__links {
    justify-content: center;
  }
  
  .sdp-newsletter__form {
    flex-direction: column;
  }
  
  .sdp-share {
    flex-direction: column;
    align-items: flex-start;
  }
}
