/* Self-hosted fonts */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: optional;
  src: url('/assets/fonts/open-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('/assets/fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('/assets/fonts/open-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('/assets/fonts/open-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url('/assets/fonts/open-sans-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('/assets/fonts/lora-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: optional;
  src: url('/assets/fonts/lora-400i.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('/assets/fonts/lora-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 700;
  font-display: optional;
  src: url('/assets/fonts/lora-700i.woff2') format('woff2');
}

.fa, .fas, .far, .fab, .fal, .fad {
  display: inline-block;
  min-width: 1em;
}

/* Fallback font metrics to reduce CLS from web font swap */
@font-face {
  font-family: 'Lora Fallback';
  src: local('Times New Roman');
  size-adjust: 97.4%;
  ascent-override: 100%;
  descent-override: 27%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Open Sans Fallback';
  src: local('Arial');
  size-adjust: 106.87%;
  ascent-override: 101.09%;
  descent-override: 27.64%;
  line-gap-override: 0%;
}

/* Reserve inline space for FontAwesome icons before FA CSS (deferred) loads.
   Prevents CLS from icons appearing in headings, buttons, and banners. */
.fa, .fas, .far, .fab, .fal, .fad {
  display: inline-block;
  min-width: 1em;
  font-style: normal;
  line-height: 1;
}

/* --- General --- */

html {
  font-size: 100%
}

body {
  font-family: 'Lora', 'Lora Fallback', 'Times New Roman', serif;
  font-size: 1.125rem;
  color: #404040;
  position: relative;
  background-color: #FFFFFF;
  
}
p {
  line-height: 1.5;
  margin: 1.875rem 0;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 1.5rem; /* Added space above headings */
}
h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.125rem;
}
a {
  color: #008AFF;
}
a:hover,
a:focus {
  color: #0085A1;
}
blockquote {
  color: #808080;
  font-style: italic;
}
blockquote p:first-child {
  margin-top: 0;
}
hr.small {
  max-width: 6.25rem;
  margin: 1rem auto;
  border-width: 0.25rem;
  border-color: inherit;
  border-radius: 0.1875rem;
}

/* fix in-page anchors to not be behind fixed header */
:target:before { 
  content: "";
  display: block;
  height: 3.125rem; /* navbar height */
  margin: -3.125rem 0 0;
}

.main-content {
  padding-top: 5rem;
}
@media (min-width: 1200px) {
  .main-content {
    padding-top: 8.125rem;
  }
}

.hideme {
  display: none;
}

::-moz-selection {
  color: white;
  text-shadow: none;
  background-color: #0085A1;
}
::selection {
  color: white;
  text-shadow: none;
  background-color: #0085A1;
}
img::selection {
  color: white;
  background: transparent;
}
img::-moz-selection {
  color: white;
  background: transparent;
}

img {
  max-width: 100%;
}

.linked-section {
  padding-top: 3.75rem;
  margin-top: -1.5625rem;
}

/* --- Navbar --- */

.navbar-custom {
  background-color: black;
  border-bottom: 1px solid #EAEAEA;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 56px;
  
  -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
  -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
  transition: background .5s ease-in-out,padding .5s ease-in-out;
}

.navbar-custom,
.navbar-custom.top-nav-short,
.navbar-custom.top-nav-short-permanent {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-custom .navbar-brand {
  line-height: 1.5;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1.125rem;
}

/* Home button styling */
.navbar-custom .navbar-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.navbar-custom .navbar-home-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.navbar-custom .navbar-home-btn .nav-home-icon {
  width: 1rem;
  height: 1rem;
}

/* Collapsed: icon only, minimal styling */
@media (max-width: 1199px) {
  .navbar-custom .navbar-home-btn {
    background: transparent;
    border: none;
    padding: 0.5rem !important;
    gap: 0;
  }
  
  .navbar-custom .navbar-home-btn span {
    display: none;
  }
  
  .navbar-custom .navbar-home-btn .nav-home-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .navbar-custom .navbar-home-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }
}

/* Support / Buy me a coffee button in navbar */
.navbar-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFDD00;
  border: 1px solid #e6c700;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #000000 !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-left: 0.5rem;
}

.navbar-support-btn:hover {
  background: #ffce00;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 221, 0, 0.4);
  color: #000000 !important;
  text-decoration: none !important;
}

.navbar-support-emoji {
  font-size: 0.9rem;
  line-height: 1;
}

@media (max-width: 1199px) {
  .navbar-support-btn {
    display: none;
  }
}

.navbar-custom .navbar-brand-logo {
  -webkit-transition: padding .5s ease-in-out;
  -moz-transition: padding .5s ease-in-out;
  transition: padding .5s ease-in-out;
}

.navbar-custom .navbar-brand-logo,
.navbar-custom.top-nav-short .navbar-brand-logo,
.navbar-custom.top-nav-short-permanent .navbar-brand-logo {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}

.navbar-custom .navbar-brand-logo img {
  -webkit-transition: height .5s ease-in-out;
  -moz-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}

.navbar-custom .navbar-brand-logo img,
.navbar-custom.top-nav-short .navbar-brand-logo img,
.navbar-custom.top-nav-short-permanent .navbar-brand-logo img {
  height: 2.5rem;
}

.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus ,
.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link:focus,
.navbar-custom .navbar-nav .dropdown-item:hover,
.navbar-custom .navbar-nav .dropdown-item:focus {
  color: #0085A1;
}

.navbar-custom .navbar-nav .nav-item {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
}

.navbar-custom .navbar-nav .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.5;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
  font-weight: 800;
  color: #FFFFFF;
}

.navbar-toggler {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.navbar-custom .navbar-toggler:focus,
.navbar-custom .navbar-toggler:hover {
  background-color: initial;
}

.navbar-custom .navbar-toggler[aria-expanded="true"] {
  background-color: rgba(0, 0, 0, 0.2);
}

.dropdown-toggle::after {
  border-width: 0.4em;
}

@media (min-width: 1200px) {
  .navbar-custom {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .navbar-custom .navbar-brand-logo {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-custom .navbar-brand-logo img {
    height: 3.125rem;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .navbar-expand-xl .navbar-nav .nav-item:not(.dropdown):last-child .nav-link {
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-custom .nav-item.dropdown:hover {
    background: rgba(0, 0, 0, 0.1);
  }
}

.navbar-custom .nav-item.dropdown.show {
  background: rgba(0, 0, 0, 0.2);
}

.navbar-custom .nav-item.dropdown .dropdown-menu {
  min-width: 0;
  margin-top: 0;
  font-size: 1em;
  border: 0;
  padding: 0;
  width: 100%;
  word-break: break-word;
}
.navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item {
  white-space: normal;
  padding: 0.625rem;
  background-color: black;
  color: #FFFFFF;
  text-decoration: none !important;
  border-width: 0 1px 1px 1px;
  font-weight: normal;
}
.navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
.navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  color: #0085A1;
  background-color: black;
}

@media (min-width: 1200px) {
  .navbar-custom .nav-item.dropdown .dropdown-menu {
    min-width: 12rem;
    width: auto;
    text-align: left;
  }

  .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border: 1px solid #EAEAEA;
    border-width: 0 1px 1px;
  }
}

@media (max-width: 1199px) {
  .navbar-custom .navbar-collapse {
    border-top: 1px solid #EAEAEA;
    margin: 0 -1rem;
  }

  .navbar-custom .navbar-nav {
    padding: 0.5rem 0;
  }

  .navbar-custom .navbar-nav .nav-link {
    padding: 0.675rem 0 0.675rem 1rem;
  }

  .navbar-custom .nav-item.dropdown.show {
    background: rgba(0, 0, 0, 0.2);
  }

  .navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item {
    padding-left: 2rem;
  }
}

.navbar-custom .avatar-container {
  position: absolute;
  left: 50%;
  width: 3.125rem;
  margin-top: 1.75rem;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
}
.navbar-custom.top-nav-short .avatar-container {
  opacity: 0;
  visibility: hidden;
  transition: visibility linear 0.5s, opacity 0.5s ease-in-out;
  -webkit-transition: visibility linear 0.5s, opacity 0.5s ease-in-out;
  -moz-transition: visibility linear 0.5s, opacity 0.5s ease-in-out;
}

.navbar-custom .avatar-container .avatar-img-border {
  width: 100%;
  display: inline-block;
  margin-left: -50%;
  
    border-radius: 50%;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, .8);
    -webkit-box-shadow: 0 0 0.3125rem rgba(0, 0, 0, .8);
    -moz-box-shadow: 0 0 0.5rem rgba(0, 0, 0, .8);
  
}
.navbar-custom .avatar-container .avatar-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  
    border-radius: 50%;
  
  display: block;
}

.navbar-custom.top-nav-expanded .avatar-container {
  display: none;
}

@media (min-width: 1200px) {
  .navbar-custom .avatar-container {
    width: 6.25rem;
  }

  .navbar-custom .avatar-container .avatar-img-border {
    width: 100%;
    
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    
  }

  .navbar-custom .avatar-container .avatar-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar-custom .avatar-container {
    display: none;
  }
}

/* --- Footer --- */

footer {
  padding: 1.875rem 0;
  border-top: 1px #EAEAEA solid;
  margin-top: 3.125rem;
  font-size: 0.875rem;
  background-color: #F5F5F5;
  
}

footer p.text-muted {
  color: #777777 !important;
}

footer a {
  color: #404040;
}

footer .list-inline {
  margin: 0;
  padding: 0;
  margin-bottom: 1.875rem;
}
footer .copyright {
  font-family: 'Merriweather', Georgia, serif;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
}
footer .theme-by {
  text-align: center;
  margin: 0.625rem 0 0;
}
footer .footer-custom-content {
  text-align: center;
  margin-bottom: 0.9375rem;
  font-family: 'Merriweather', Georgia, serif;
}

@media (min-width: 768px) {
  footer {
    padding: 3.125rem 0;
  }
  footer .footer-links {
    font-size: 1.125rem;
  }
  footer .copyright {
    font-size: 1rem;
  }
  footer .footer-custom-content {
    font-size: 1rem;
  }
}

/* --- Post preview (Medium-style) --- */

.posts-list {
  max-width: 720px;
  margin: 0 auto;
}

.post-preview {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e9ecef;
  background: transparent;
  transition: all 0.2s ease;
}

.post-preview:first-child {
  padding-top: 0;
}

.post-preview:last-child {
  border-bottom: none;
}

.post-preview-link {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none !important;
  color: inherit;
}

.post-preview-link:hover,
.post-preview-link:focus {
  text-decoration: none !important;
  color: inherit;
}

.post-content {
  flex: 1;
  min-width: 0;
}

.post-preview .post-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
  color: #242424;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: color 0.15s ease;
}

.post-preview:hover .post-title {
  color: #0085A1;
}

.post-preview .post-subtitle,
.post-preview .post-excerpt {
  margin: 0 0 0.6rem 0;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b6b6b;
  font-family: 'Lora', 'Lora Fallback', 'Times New Roman', serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #757575;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.post-date {
  font-weight: 400;
}

.post-tags-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.post-tag {
  background: #f2f2f2;
  color: #6b6b6b;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.post-tag:hover {
  background: #e0e0e0;
  color: #404040;
  text-decoration: none;
}

.post-thumbnail {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 4px;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(20%);
}

.post-preview:hover .post-thumbnail img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.post-thumbnail-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.post-preview:hover .post-thumbnail-placeholder {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.navbar-tech-news {
  color: #fff95e !important;
}

.post-heading .post-meta {
  color: #808080;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
  .post-preview {
    padding: 1.5rem 0;
  }
  
  .post-preview-link {
    gap: 1.5rem;
  }
  
  .post-preview .post-title {
    font-size: 1.4rem;
  }
  
  .post-thumbnail {
    width: 140px;
    height: 100px;
  }
}

@media (max-width: 500px) {
  .post-preview-link {
    gap: 1rem;
  }
  
  .post-thumbnail {
    width: 80px;
    height: 80px;
  }
  
  .post-preview .post-title {
    font-size: 1.1rem;
  }
  
  .post-preview .post-subtitle,
  .post-preview .post-excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .post-meta-row {
    font-size: 0.75rem;
  }
}

/* --- Tags --- */

.blog-tags {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #999;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.blog-tags a {
  color: #008AFF;
  text-decoration: none;
  padding: 0 0.3125rem;
}

.blog-tags a:hover {
  border-radius: 2px;
  color: #0085A1;
  background-color: #EEE;
}

.post-preview .blog-tags {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-preview .blog-tags {
    margin-top: 0.5rem;
  }
}

/* --- Related Posts Visual Cards --- */

.related-posts {
  margin: 2.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.related-posts-title {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.related-posts-title i {
  color: #ff6b35;
  font-size: 1rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.related-post-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #d0d5dd;
}

.related-post-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f2f5;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.5rem;
}

.related-post-content {
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.related-post-card-title {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.related-post-card:hover .related-post-card-title {
  color: #008AFF;
}

.related-post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.related-post-date {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: #868e96;
  font-weight: 500;
}

.related-post-tag {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  color: #6c757d;
  background: #f2f2f2;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-weight: 500;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 1199px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Responsive: 1 column on mobile */
@media (max-width: 575px) {
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .related-post-card {
    flex-direction: row;
    align-items: stretch;
  }
  
  .related-post-image {
    width: 100px;
    min-width: 100px;
    aspect-ratio: 1 / 1;
  }
  
  .related-post-content {
    padding: 0.75rem;
    justify-content: center;
  }
  
  .related-post-card-title {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* --- Category Recommendations Section --- */

.category-recommendations {
  margin: 2.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.category-recommendations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.category-recommendations-title {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-recommendations-title i {
  color: #0085A1;
  font-size: 1rem;
}

.category-view-all {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0085A1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-view-all:hover {
  color: #006b82;
  text-decoration: none;
}

.category-view-all i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.category-view-all:hover i {
  transform: translateX(3px);
}

/* Horizontal scroll container */
.category-posts-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: #dee2e6 transparent;
  -webkit-overflow-scrolling: touch;
}

.category-posts-scroll::-webkit-scrollbar {
  height: 6px;
}

.category-posts-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.category-posts-scroll::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 3px;
}

.category-posts-scroll::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

.category-posts-track {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.category-post-card {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-post-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #d0d5dd;
}

.category-post-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f2f5;
}

.category-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-post-card:hover .category-post-image img {
  transform: scale(1.05);
}

.category-post-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0085A1 0%, #00a8cc 100%);
  color: white;
  font-size: 1.5rem;
}

.category-post-content {
  padding: 0.75rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.category-post-card-title {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.category-post-card:hover .category-post-card-title {
  color: #0085A1;
}

.category-post-date {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  color: #868e96;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .category-post-card {
    width: 180px;
  }
  
  .category-post-card-title {
    font-size: 0.8rem;
  }
  
  .category-recommendations-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .category-post-card {
    width: 160px;
  }
  
  .category-recommendations-title {
    font-size: 1.1rem;
  }
  
  .category-view-all {
    font-size: 0.8rem;
  }
}

/* Page Views Counter */
.page-views {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin: 1rem 0;
}

.page-views .views-icon {
  display: flex;
  align-items: center;
  color: #888;
}

.page-views .views-badge {
  height: 20px;
  border-radius: 3px;
}

@media (max-width: 500px) {
  .post-image, .post-image img {
    height: 5rem;
    width: 5rem;
    max-height: 5rem;
    max-width: 5rem;
  }

  .post-image {
    width: 100%;
    text-align: center;
    margin-top: 0;
    float: left;
  }
}
/* --- Post and page headers --- */

.intro-header {
  margin: 5rem 0 1.25rem;
  position: relative;
}
.intro-header.big-img {
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  margin-top: 3.1875rem; /* The small navbar is 50px tall + 1px border */
  margin-bottom: 2.1875rem;
}
.intro-header.big-img .big-img-transition {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  transition: opacity 1s linear;
}
.intro-header .page-heading {
  text-align: center;
}
.intro-header.big-img .page-heading,
.intro-header.big-img .post-heading {
  padding: 6.25rem 0;
  color: #FFF;
  text-shadow: 1px 1px 3px #000;
}
.intro-header .page-heading h1 {
  margin-top: 0;
  font-size: 3.125rem;
}
.intro-header .post-heading h1 {
  margin-top: 0;
  font-size: 2.1875rem;
}
.intro-header .page-heading .page-subheading,
.intro-header .post-heading .post-subheading {
  font-size: 1.6875rem;
  line-height: 1.1;
  display: block;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0.625rem 0 0;
}
.intro-header .post-heading .post-subheading {
  margin-bottom: 1.25rem;
}
.intro-header.big-img .page-heading .page-subheading,
.intro-header.big-img .post-heading .post-subheading {
  font-weight: 400;
}
.intro-header.big-img .page-heading hr {
  box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  -moz-box-shadow: 1px 1px 3px #000;
}
.intro-header.big-img .post-heading .post-meta {
  color: #EEE;
}
.intro-header.big-img .img-desc {
  background: rgba(30, 30, 30, 0.6);
  position: absolute;
  padding: 0.3125rem 0.625rem;
  font-size: 0.6875rem;
  color: #EEE;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  right: 0;
  bottom: 0;
  display: none;
}
@media (min-width: 1200px) {
  .intro-header {
    margin-top: 8.125rem;
  }
  .intro-header.big-img {
    margin-top: 5.6875rem;
  }
  .intro-header.big-img .page-heading,
  .intro-header.big-img .post-heading {
    padding: 9.375rem 0;
  }
  .intro-header .page-heading h1 {
    font-size: 5rem;
  }
  .intro-header .post-heading h1 {
    font-size: 3.125rem;
  }
  .intro-header.big-img .img-desc {
    font-size: 0.875rem;
  }
}

.header-section.has-img .no-img {
  margin-top: 0;
  background-color: #FCFCFC;
  margin: 0 0 2.5rem;
  padding: 1.25rem 0;
  box-shadow: 0 0 0.3125rem #AAA;
}
/* Many phones are 320 or 360px, so make sure images are a proper aspect ratio in those cases */
.header-section.has-img .intro-header.no-img {
  display: none;
}
@media (max-width: 365px) {
  .header-section.has-img .intro-header.no-img {
    display: block;
  }
  .intro-header.big-img {
    width: 100%;
    height: 13.75rem;
  }
  .intro-header.big-img .page-heading,
  .intro-header.big-img .post-heading {
    display: none;
  }
  .header-section.has-img .big-img {
    margin-bottom: 0;
  }
}
@media (max-width: 325px) {
  .intro-header.big-img {
    height: 12.5rem;
  }
}

.caption {
  text-align: center;
  font-size: 0.875rem;
  padding: 0.625rem;
  font-style: italic;
  margin: 0;
  display: block;
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
}

#header-gh-btns {
  margin-bottom: 0.9375rem;
}
@media (max-width: 500px) {
  #header-gh-btns > iframe {
    display: block;
    margin-bottom: 0.3125rem;
  }
}

.reader-time {
  display: inline-block;
}
@media (max-width: 767px) {
  .reader-time {
    display: block;
  }
}
.reader-time .middot { 
  margin: 0 0.625rem;
}

/* --- Pagination --- */

.pagination {
  margin: 0.625rem 0 0;
  justify-content: space-between;
}

.pagination.blog-pager {
  margin-top: 0;
}

.pagination .page-item.next {
  margin-left: auto;
}

@media (min-width: 768px) {
  .pagination.blog-pager {
    margin-top: 0.625rem;
  }
}

.pagination .page-item .page-link {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.625rem 0.3125rem;
  background-color: #FFF;
  border-radius: 0;
  color: #404040;
}
@media (min-width: 768px) {
  .pagination .page-item .page-link {
    padding: 0.9375rem 1.5625rem;
  }
}
.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus {
  color: #FFF;
  border: 1px solid #0085A1;
  background-color: #0085A1;
}

/* --- Tables --- */

table {
  padding: 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
table tr {
  border-top: 1px solid #cccccc;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}
table tr:nth-child(2n) {
  background-color: #f8f8f8;
}
table tr th {
  font-weight: bold;
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 0.375rem 0.8125rem;
}
table tr td {
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 0.375rem 0.8125rem;
}
table tr th :first-child,
table tr td :first-child {
  margin-top: 0;
}
table tr th :last-child,
table tr td :last-child {
  margin-bottom: 0;
}

/* --- Code blocks --- */

pre {
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  padding: 0.59375rem;
}
.highlight pre {
  border: none;
  background: none;
  margin: 0;
}
.highlight > pre {
  background-image: linear-gradient(
    rgba(0,0,0,0.06), rgba(0,0,0,0.06) 1.5em, rgba(0,0,0,0.03) 1.5em, rgba(0,0,0,0.03) 3em);
  background-size: auto 3em;
  background-position-y: 0.625rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-left: 0.4375rem solid #444;
}
.highlight > pre:not([class~="highlight"]) { /* code block with line number */
  padding: 0;
}
.highlight table, .highlight tr, .highlight td { /* to be removed after fixing table styles */
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}
.highlight pre.lineno {
  color: rgba(0,0,0,0.3);
  border-radius: 0;
  border-right: 2px solid #444;
}

/* Make line numbers unselectable: excludes line numbers from copy-paste user ops */
.lineno {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.lineno::selection, .lineno::-moz-selection {
  background: none;
}

/* --- Social media sharing section --- */

.social-share-section {
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #d1d5db;
}

.social-share-title {
  font-size: 1.375rem;
  font-weight: 600;
  font-style: italic;
  color: #374151;
  margin: 0 0 1.25rem 0;
}

.social-share-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  background: #ffffff;
  color: #374151;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.social-share-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
  text-decoration: none;
}

.social-share-btn:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.social-share-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .social-share-grid {
    gap: 0.5rem;
  }
  
  .social-share-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .social-share-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

/* --- Notification boxes --- */
.box-note, .box-warning, .box-error, .box-success {
  padding: 0.9375rem 0.9375rem 0.9375rem 0.625rem;
  margin: 1.25rem 1.25rem 1.25rem 0.3125rem;
  border: 1px solid #eee;
  border-left-width: 0.3125rem;
  border-radius: 0.3125rem 0.1875rem 0.1875rem 0.3125rem;
}

.box-note {
  background-color: #eee;
  border-left-color: #2980b9;
}

.box-warning {
  background-color: #fdf5d4;
  border-left-color: #f1c40f;
}

.box-error {
  background-color: #f4dddb;
  border-left-color: #c0392b;
}

.box-success {
  background-color: #98FB98;
  border-left-color: #3CB371;
}

/* Fix table border github gist snippets */

.gist, .gist-file table tr {
  border: unset;
}

.gist, .gist-file table tr td {
  border: unset;
}

/* Tags page */

.tag-btn {
  margin: 0.3125rem;
}

#full-tags-list {
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#full-tags-list .tag-entry {
  margin: 0 0 0.9375rem 1.5625rem;
}

#full-tags-list .tag-entry a {
  font-size: 1.25rem;
}

#full-tags-list .tag-entry .entry-date {
  color: #808080;
  font-style: italic;
  font-size: 1rem;
}


/* Videos page */


.youtube-channel {
  background: #fff0f0; /* A light reddish background */
  border-left: 5px solid #ff0000; /* YouTube red border on the left */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.youtube-subscribe-txt {
  color: #c4302b; /* A darker red color for text */
  font-size: 1.2em; /* Slightly larger font */
  font-weight: 700; /* Bolder */
  margin-bottom: 15px;
  display: inline-block;
}

.youtube_video {
  margin-bottom: 35px;
}

h2 + h2,
h2 + h3,
h3 + h2,
h3 + h3,
h1 + h2,
h1 + h3 {
  margin-top: 1.3em;
}

/* --- All Posts Cards Section --- */

.all-posts-section {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 2px solid #e9ecef;
}

.section-title {
  text-align: center;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #007bff, #28a745);
  border-radius: 2px;
}

.posts-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  border: 1px solid #e8e8e8;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 140px;
  aspect-ratio: 5/4;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border-color: #007bff;
}

.card-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-link:hover {
  text-decoration: none;
  color: inherit;
}

.card-image {
  width: 100%;
  height: 55%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.card-placeholder {
  width: 100%;
  height: 55%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card-content {
  padding: 0.8rem 0.6rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.card-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #2c3e50;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: block;
  word-wrap: break-word;
  hyphens: auto;
  text-align: center;
  max-height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .posts-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    padding: 0 0.5rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .card-content {
    padding: 0.7rem 0.5rem;
  }
  
  .card-title {
    font-size: 0.8rem;
  }
  
  .all-posts-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }
  
  .post-card {
    min-height: 120px;
  }
  
  .card-placeholder {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .posts-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    padding: 0;
    gap: 0.6rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .card-title {
    font-size: 0.75rem;
  }
  
  .card-content {
    padding: 0.6rem 0.4rem;
  }
  
  .card-placeholder {
    font-size: 1.1rem;
  }
  
  .post-card {
    min-height: 100px;
  }
}

/* Expand/Collapse functionality */
.expand-section {
  text-align: center;
  margin-top: 2rem;
}

.expand-btn {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Open Sans', 'Open Sans Fallback', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.expand-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  background: linear-gradient(45deg, #0056b3, #003d82);
}

.expand-btn:active {
  transform: translateY(0);
}

.hidden-posts {
  display: none;
}

.hidden-posts.show {
  display: contents;
}

/* --- Advertisement Label --- */

.ad-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.ad-label::before,
.ad-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
}

.ad-label-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6b7280;
}

/* Home bottom ad */
.home-bottom-ad {
  margin: 40px 0;
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

/* --- Home Page Layout Override for Sidebar --- */

/* Home page container - constrains all content to same max-width */
.container-home {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Two-column layout for posts + sidebar */
.home-layout {
  display: flex;
  gap: 3rem;
}

.home-main {
  flex: 1;
  min-width: 0;
  max-width: 720px;
}

.home-sidebar {
  width: 280px;
  flex-shrink: 0;
}

/* Hide sidebar on smaller screens */
@media (max-width: 1199px) {
  .container-home {
    max-width: 720px;
  }
  
  .home-layout {
    display: block;
  }
  
  .home-sidebar {
    display: none;
  }
  
  .home-main {
    max-width: 100%;
  }
}

/* Adjust for medium-large screens */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container-home {
    max-width: 1020px;
  }
  
  .home-layout {
    gap: 2rem;
  }
  
  .home-sidebar {
    width: 260px;
  }
}

/* Full width on large screens */
@media (min-width: 1400px) {
  .container-home {
    max-width: 1150px;
  }
  
  .home-layout {
    gap: 3.5rem;
  }
  
  .home-sidebar {
    width: 300px;
  }
}