/* Basic Block Styles */
.wp-block-paragraph {
    margin-bottom: 1.5em;
}

/* List Styles */
.wp-block-list {
    margin-left: 1.5em;
    padding-left: 1.5em;
}

ul.wp-block-list {
    list-style-type: disc;
}

ol.wp-block-list {
    list-style-type: decimal;
}

/* Fix for bullet lists */
.wp-block-list li,
.entry-content ul li,
.content ul li,
.article-seven .content ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}

.wp-block-list ol li,
.entry-content ol li,
.content ol li,
.article-seven .content ol li {
    list-style-type: decimal;
}

/* Heading Styles */
.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-heading h4,
.wp-block-heading h5,
.wp-block-heading h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

/* Quote Styles */
.wp-block-quote {
    border-left: 4px solid #000;
    padding-left: 1em;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
}

/* Image Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-image figcaption {
    text-align: center;
    font-size: 0.9em;
    color: #555;
}

/* Table Styles */
.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    border: 1px solid #ddd;
    padding: 8px;
}

/* Code Block Styles */
.wp-block-code {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.8em;
    font-family: monospace;
}

/* Button Styles */
.wp-block-button__link {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
}

.is-style-outline .wp-block-button__link {
    background-color: transparent;
    border: 2px solid currentColor;
}

/* Alignment Styles */
.has-text-align-center {
    text-align: center;
}

.has-text-align-right {
    text-align: right;
}

.has-text-align-left {
    text-align: left;
}

img.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
}

/* RTL Support */
.rtl .wp-block-quote {
    border-left: none;
    border-right: 4px solid #000;
    padding-left: 0;
    padding-right: 1em;
}
