/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Child theme for GeneratePress
Author: Tinku Barman
Author URI: https://niyogassam.com
Template: generatepress
Version: 1.0.0
*/

/* ------------------------
   🎨 Custom Footer Styling
------------------------- */
.custom-footer {
  background-color: #222;
  color: #fff;
  padding: 20px 15px;
  text-align: center;
  font-size: 14px;
}

.custom-footer p {
  margin: 0 0 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.footer-left p {
  margin: 0;
}

.footer-right a,
.footer-icons a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-right a:hover,
.footer-icons a:hover {
  color: #ffcc00;
}

.footer-right svg,
.footer-icons svg {
  margin-right: 5px;
  vertical-align: middle;
}

.footer-icons a {
  margin: 0 8px;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
  }
}

.single .post-image,
.single-post .entry-header .post-image,
.single .featured-image {
    display: none !important;
}

.inline-featured-summary {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.inline-featured-thumb {
    flex: 0 0 20%;
    max-width: 20%;
}

.inline-featured-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.inline-summary-text {
    flex: 1;
    max-width: 80%;
}

@media (max-width: 768px) {
    .inline-featured-summary {
        flex-direction: column;
    }
    .inline-featured-thumb,
    .inline-summary-text {
        max-width: 100%;
        flex: 100%;
    }
}
.custom-post-meta {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.custom-post-meta .meta-top {
    margin-bottom: 4px;
}

.custom-post-meta span {
    margin-right: 10px;
    display: inline-block;
}

.custom-post-meta .meta-bottom {
    margin-top: 4px;
}




