/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

/* Paragraph */
p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Lists */
ul, ol {
    margin-left: 20px;
    list-style-position: inside;
    font-size: 16px;
}

a {
    color: #0073aa; /* Default link color */
    text-decoration: underline;
}

a:hover {
    color: #005177; /* Hover state */
    text-decoration: none;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}


.wp-block-button__link {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.wp-block-button__link:hover {
    background-color: #005177;
}


/* Blockquotes */
blockquote {
    border-left: 4px solid #ccc;
    padding-left: 20px;
    font-style: italic;
    color: #666;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Code blocks */
code {
    background-color: #f4f4f4;
    padding: 2px 4px;
    font-family: 'Courier New', Courier, monospace;
}


/* Align wide/full elements */
.wp-block {
    max-width: 100%;
}

.wp-block[data-align="wide"] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block[data-align="full"] {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}


