/*
Theme Name: Dentoamigo
Author:Dr. Ravina Duhan
Author URI: https://dentoamigo.com/
Description: A custom theme created by Dr. Ravina Duhan.
Version: 1.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
  ## Body
  ## Typography
  ## Links
  ## Forms
  ## Buttons
# Layout
  ## Header
  ## Navigation
  ## Content
  ## Sidebar
  ## Footer
# Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
body {
    font-family: sans-serif;
    line-height: 1.5;
    margin: 0;
    background: #fff;
    color: #333;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.custom-logo {
    max-height: 60px;
}

.main-navigation {
    display: none;
}

.main-navigation.toggled {
    display: block;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    margin: 0 10px;
}

.main-navigation ul li a {
    display: block;
    padding: 10px;
}

.site-content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
}

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

.widget-area {
    width: 300px;
    margin-left: 40px;
}

.site-footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.wp-caption{
	width:100% !important;
}


/* body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    Light gray background
} */

.btn-red {
    background-color: #e4002b;
    border-color: #e4002b;
    color: #fff;
}

.btn-red:hover {
    background-color: #c20024;
    border-color: #c20024;
    color: #fff;
}

.post-thumbnail-intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.post-thumbnail-intro img {
    flex-shrink: 0;
    max-width: 300px;
    /* Adjust as needed */
    height: auto;
}

@media (max-width: 767.98px) {
    .post-thumbnail-intro {
        flex-direction: column;
        align-items: center;
    }

    .post-thumbnail-intro img {
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (min-width: 768px) {
    .main-navigation {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
    }
	.wp-caption{
	width:auto% !important;
}
}
