/*
Theme Name: My Twenty Twenty Child Theme
Theme URI: https://example.com
Description: A child theme for Twenty Twenty.
Author: Your Name
Author URI: https://example.com/
Template: twentytwenty
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
/*header*/
#site-header{
  background-color: #fbfbfba3;
  box-shadow: 4px 8px 15px #f5f5f5;
}/*end header*/
/*footer*/
.footer-widgets-outer-wrapper{
  padding: 0!important;
}
#menu-main-menu-2{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.wp-block-column{
  flex-basis: auto!important;
}
.widget_nav_menu li{
  margin: 0!important;
}/*end footer*/
/*font*/
h1{
  font-size: 5rem!important;
}
.entry-content .wp-block-columns h1, .entry-content .wp-block-columns h2, .entry-content .wp-block-columns h3, .entry-content .wp-block-columns h4, .entry-content .wp-block-columns h5, .entry-content .wp-block-columns h6 {
      margin:0 0 0;
}
.entry-content > .alignwide:not(.wp-block-group.has-background){
  margin-top: 3rem!important;
  margin-bottom: 0!important;	
}
.entry-content > .alignfull:not(.wp-block-group.has-background){
  margin-top: 3rem!important;
  margin-bottom: 0!important;	
}
img.emoji{
  display: block!important;
  height: auto!important;
}/*end font*/
/* User Interface Form */
.contenner {
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.contenner-form,
.contenner-inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}
.button-form {
  width: 250px;
}
@media (max-width: 1024px) {
  .contenner-form,
  .contenner-inner {
    padding: 15px;
  }
  .button-form {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .contenner-form,
  .contenner-inner {
    padding: 10px;
  }

  .button-form {
    width: 100%;
  }
}
/* End User Interface Form */
/*post template*/
.custom-posts-grid {
  max-width: 100%!important;
  justify-content: flex-start;
  padding: 0 1rem;
  box-sizing: border-box;
  padding: 2%!important;
}
.custom-post-card {
  width: 100%;
  max-width: 450px;
  flex: 1 1 calc(33.333% - 20px);
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.custom-post-card:hover {
  background-color: #f9f9f9;
}
.custom-post-thumbnail img {
  width: 100%;
  height: 280px;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.custom-read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
}
.custom-pagination ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  margin: 30px 0;
}
.custom-pagination li a,
.custom-pagination li span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
}
.custom-pagination li .current {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}/*End post template*/
/*singer post*/
.singerpost {
  padding: 2% 10%;
  box-sizing: border-box;
}
.post-thumbnail img {
  width: 40vw;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  border-radius: 6px;
}/*End singer post*/
/*MEDIA post template singer post*/
@media screen and (max-width: 1024px) {
  .custom-post-card {
    flex: 1 1 calc(50% - 20px);
  }
  .singerpost {
    padding: 0 5%;
  }
}
@media screen and (max-width: 720px) {
  .custom-posts-grid{
    flex-direction: column!important;
  }
  .custom-post-card {
    flex: 1 1 100%;
  }
  .singerpost {
    padding: 0 1rem;
  }
.custom-post-thumbnail img {
  object-fit: contain;
}
  .post-thumbnail img {
    width: 100%;
    max-height: 400px;
  }
}/*MEDIA end*/