/*
Theme Name: Maaz Articles Theme
Theme URI: http://example.com
Author: Maaz
Author URI: http://example.com
Description: A custom theme for publishing articles.
Version: 1.0
*/

/* @tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    @apply text-gray-900 font-bold leading-snug mt-8 mb-4;
  }

  .prose h2 {
    @apply text-2xl;
  }

  .prose h3 {
    @apply text-xl;
  }

  .prose h4 {
    @apply text-lg;
  }
} */



.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.header-left .logo {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-menu li {
  display: inline-block;
}

.main-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.search-form {
  display: flex;
  gap: 5px;
}

.search-form input {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.search-form button {
  padding: 5px 10px;
  background-color: #d97706;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.content-wrapper h2 {
  font-size: 1.5rem; /* Tailwind: text-2xl */
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1f2937; /* gray-800 */
}

.content-wrapper h3 {
  font-size: 1.25rem; /* Tailwind: text-xl */
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.content-wrapper h4 {
  font-size: 1.125rem; /* Tailwind: text-lg */
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.content-wrapper h5 {
  font-size: 1rem; /* Tailwind: text-base */
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.content-wrapper h6 {
  font-size: 0.875rem; /* Tailwind: text-sm */
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.content-wrapper p {
  font-size: 1rem; /* Tailwind: text-base */
  line-height: 1.75rem;
  margin-bottom: 1rem;
  color: #374151; /* gray-700 */
}

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

.content-wrapper ul {
  list-style-type: disc;
}

.content-wrapper ol {
  list-style-type: decimal;
}

.content-wrapper img {
  border-radius: 0.75rem; /* Tailwind: rounded-xl */
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}

#post-toc a {
  display: block;
  margin-bottom: 0.5rem;
}
#post-toc a[href^="#heading-"] {
  padding-left: 0.5rem;
}

.contact-form { 
  font-family: Arial, sans-serif;
}

.form-group {
  margin-bottom: 20px;
}

.two-cols {
  display: flex;
  gap: 20px;
}

.form-field {
  flex: 1;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}

.input:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.btn-submit {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.CNTgroup {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.CNTgroup .form-field {
    flex: 0 0 calc(50% - 20px) !important;
}

.mz_form {
    width: 100% !important;
    padding: 10px 16px;
    font-size: 14px !important;
    font-family: inherit;
    color: #000000;
}
.CNTgroup.full .form-field {
    flex: 0 0 100% !important;
}
.CNTgroup .form-field br {
    display: none;
}

textarea.mz_form {
    height: 116px;
}
.group:hover > ul {
  display: block;
  visibility: visible;
  opacity: 1;
}
.newsletter_mzz .es-form-field-container
{
  position: relative;
}
.newsletter_mzz .es-form-field-container input#esfpx_email_48d8db61309c48 {
    font-size: 16px !important;
    height: 42px;
    width: 100%;
    border-radius: 24px;
    padding: 20px 20px !important;
}
.newsletter_mzz .es-form-field-container input[type="submit"] {
    background: #d97706;
    padding: 4px 11px;
    border: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 24px;
    right: 6px;
    color: #FFFFFF;
}

@media screen and (max-width: 576px) 
{
  .CNTgroup {
    flex-wrap: wrap !important;
  }
  .CNTgroup .form-field {
    flex: 0 0 100% !important; 
  }
  
}

 