.readme {
    --readme-wrapper-height: 240px;
    --readme-padding: 2rem;
    --border-radius: 4px;
    position: relative;
    display: grid;
    grid-template-rows: 60px 1fr;
    gap: 0;
    min-height: 300px;
    width: 100%;
    min-width: 300px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    border: 1px solid #C6C6C6;
    border-radius: var(--border-radius);
    margin-block-end: 3rem;
}
.readme-title {
    display: flex;
    place-items: center;
    justify-content: space-between;
    padding-inline: var(--readme-padding);
    background: #F0F3F2;
    width: auto;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.readme-wrapper {
    overflow-y: scroll;
    min-height: var(--readme-wrapper-height);
    position: relative;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.resizable {
    resize: vertical;
}
.readme-wrapper footer {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(var(--readme-padding) / 2);
    background: yellow;
    display: block;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.readme-content {
    min-height: var(--readme-wrapper-height);
    max-height: var(--readme-wrapper-height);
    height: auto;
    resize: vertical;
    padding: var(--readme-padding);
}
.readme-content h4 {
    font-weight: 500;
    font-size: 1.1rem;
    color: #333;
}
.readme-content p,
.readme-content span,
.readme-content a {
    font-size: 1rem;
}
.readme-content time {
    font-size: .9rem;
    padding: 0 0 1rem 0;
    opacity: .9;
    display: block;
}
.readme-content time:before {
    content: '( ';
}
.readme-content time:after {
    content: ' )';
}
.readme-content ol li {
  list-style-type: decimal;
}
.readme-content ul li {
  list-style-type: disc;
}
.policy_wrapper {
    padding: 0;
    margin: 0;
}
.prose--responsive h3.title-download {
    font-size: 1.3rem;
}
.form-edx {
  border: 1px solid #C6C6C6;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
  border-radius: 4px;
}
.form-edx label.form__label {
  font-size: 1.1rem;
}