/*!
* AN2 Pug Build System v1.0.0
* Copyright 2013-2025 AN2 Project
* Licensed under MIT
*/
/*!
 * AN2 Project Custom Styles
 * Custom SCSS styles for the AN2 project
 */
.an2-custom {
  color: #FF9E0F;
}

.an2-hero {
  background: linear-gradient(135deg, #FF9E0F, #ffc775);
  color: white;
  padding: 4rem 0;
}

.an2-card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease;
}
.an2-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.an2-btn {
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.an2-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .an2-hero {
    padding: 2rem 0;
  }

  .an2-hero h1 {
    font-size: 2rem;
  }
}
.hover-text-warning:hover {
  color: #FF9E0F !important;
}

.hover-text-white:hover {
  color: white !important;
}

.hover-text-dark:hover {
  color: #212529 !important;
}

.hover-bg-warning:hover {
  background-color: #FF9E0F !important;
}

.hover-shadow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.panel .label.label-warning {
  margin-right: 0.4rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.blog-sidebar .card {
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
  background: #fff;
}
.blog-sidebar .card-header {
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.blog-sidebar .card-body {
  padding: 1rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.blog-sidebar .card-body h6,
.blog-sidebar .card-body h6 a {
  text-transform: none !important;
  letter-spacing: normal;
}

.post-content a {
  color: #FF9E0F;
}
.post-content a:hover {
  color: #F87B1F;
}
.post-content img, .post-content figure img {
  max-width: 100%;
  height: auto;
}
.post-content img.alignleft, .post-content .alignleft img {
  float: left;
  margin: 0 1rem 1rem 0;
  max-width: 45%;
}
.post-content img.alignright, .post-content .alignright img {
  float: right;
  margin: 0 0 1rem 1rem;
  max-width: 45%;
}
.post-content img.aligncenter, .post-content .aligncenter img {
  display: block;
  margin: 1rem auto;
  float: none;
}
.post-content .panel .post-content img {
  display: block;
  margin: 0.5rem auto 1rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
}
.post-content figure, .post-content .wp-caption {
  margin: 1rem 0;
}
.post-content p > img {
  margin-bottom: 0.5rem;
}
.post-content blockquote {
  border-left: 4px solid #FF9E0F;
}
.post-content pre {
  overflow-x: auto;
}
.post-content .alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.post-content .alignright {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.post-content .aligncenter {
  display: block;
  margin: 1rem auto;
  text-align: center;
}
.post-content h2, .post-content h3, .post-content h4 {
  clear: both;
  margin-top: 1.5rem;
}
.post-content .wp-caption {
  max-width: 100%;
}
.post-content .wp-caption img {
  display: block;
  margin: 0 auto;
}
.post-content .wp-caption .wp-caption-text {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 3rem;
  }
}